From 32ddae29de942a31ca2abd829a1154e56294836c Mon Sep 17 00:00:00 2001 From: Maxim Likhachev Date: Fri, 18 Jun 2021 19:41:39 +0300 Subject: [PATCH] retag: fix indentation --- scripts/retag | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/retag b/scripts/retag index 3aea528..abdadf0 100755 --- a/scripts/retag +++ b/scripts/retag @@ -1,7 +1,7 @@ #!/bin/bash #Создан: Ср 19 фев 2020 21:59:29 -#Изменён: Чт 20 фев 2020 00:45:38 +#Изменён: Пт 18 июн 2021 19:40:51 # Requirements: # - mid3v2 from media-libs/mutagen @@ -82,10 +82,10 @@ while [[ $# -gt 0 ]]; do key="$1" case $key in - -h|--help) usage; exit 0; shift;; - -v|--verbose) VERBOSE=1; shift;; - -d|--dry) DRY_RUN=1; VERBOSE=1; shift;; - *) QUEUE+=("$1"); shift;; + -h|--help) usage; exit 0; shift;; + -v|--verbose) VERBOSE=1; shift;; + -d|--dry) DRY_RUN=1; VERBOSE=1; shift;; + *) QUEUE+=("$1"); shift;; esac done