[devtools,1/3] makerepropkg: fix wonky indent

Message ID 20191216204609.111647-2-eschwartz@archlinux.org
State Accepted
Headers show
Series makerepropkg improvements | expand

Commit Message

Emil Velikov via arch-projects Dec. 16, 2019, 8:46 p.m. UTC
Signed-off-by: Eli Schwartz <eschwartz@archlinux.org>
---
 makerepropkg.in | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

Patch

diff --git a/makerepropkg.in b/makerepropkg.in
index 710f3ca..2b0945e 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))