From: Carl Worth Date: Sun, 5 Jul 2020 18:07:49 +0000 (-0700) Subject: Use consistent indentation for case statement X-Git-Url: https://git.cworth.org/git?p=nogit;a=commitdiff_plain;h=0d90c4ef1abc1382c85243bb59db435bdb5770e7 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. --- 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 ""