summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2019-12-08 14:46:10 -0500
committerLevente Polyak <anthraxx@archlinux.org>2020-02-27 14:49:33 +0100
commit21d9984acc29c14eaa8cad3a611c9271d60af39c (patch)
tree48a17073db62e08e475795f3104fabd9b3990a3a
parentcb6484fe4538e34490a44661d8579c370cccea0b (diff)
downloaddevtools32-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-xmakerepropkg.in12
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))