diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2019-12-08 14:46:10 -0500 |
---|---|---|
committer | Levente Polyak <anthraxx@archlinux.org> | 2020-02-27 14:49:33 +0100 |
commit | 21d9984acc29c14eaa8cad3a611c9271d60af39c (patch) | |
tree | 48a17073db62e08e475795f3104fabd9b3990a3a | |
parent | cb6484fe4538e34490a44661d8579c370cccea0b (diff) | |
download | devtools32-21d9984acc29c14eaa8cad3a611c9271d60af39c.tar.xz |
makerepropkg: fix wonky indent
Signed-off-by: Eli Schwartz <eschwartz@archlinux.org>
Signed-off-by: Levente Polyak <anthraxx@archlinux.org>
-rwxr-xr-x | makerepropkg.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/makerepropkg.in b/makerepropkg.in index 26534b6..6b2e3eb 100755 --- a/makerepropkg.in +++ b/makerepropkg.in @@ -101,12 +101,12 @@ __EOF__ } while getopts 'M:c:h' arg; do - case "$arg" in - M) archroot_args+=(-M "$OPTARG") ;; - c) cache_dirs+=("$OPTARG") ;; - h) usage; exit 0 ;; - *|?) usage; exit 1 ;; - esac + case "$arg" in + M) archroot_args+=(-M "$OPTARG") ;; + c) cache_dirs+=("$OPTARG") ;; + h) usage; exit 0 ;; + *|?) usage; exit 1 ;; + esac done shift $((OPTIND - 1)) |