From 0d90c4ef1abc1382c85243bb59db435bdb5770e7 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sun, 5 Jul 2020 11:07:49 -0700 Subject: [PATCH] Use consistent indentation for case statement I would actually prefer the ';;' to be out to the left, (to make it more clear if these were ever missing), but emacs wants to indent this and I'm not going to fight it here. --- nogit | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nogit b/nogit index 212ca33..3b4c40c 100755 --- a/nogit +++ b/nogit @@ -132,14 +132,14 @@ case "$cmd" in false; fi nogit_clone "$2" - ;; + ;; sync) nogit_sync - ;; + ;; help) usage true - ;; + ;; *) echo "Error: Unknown command: $cmd" >&2 echo "" -- 2.43.0