for consistency, use double semi-colon on the last/default case. While not strictly needed, it makes for consistent reading; and easy (diffable) extending when adding a new statement below.

Olliver Schinagl
2021-10-07 09:39:26 +02:00
parent 1c936f79fa
commit 421839548d

@@ -50,7 +50,7 @@ If you don't have a default case because the default should be to take no action
case "$(uname)" in case "$(uname)" in
CYGWIN*) cygwin=1;; CYGWIN*) cygwin=1;;
MINGW*) mingw=1;; MINGW*) mingw=1;;
*) # No special workarounds identified *) ;; # No special workarounds identified
esac esac
``` ```