for consistency, use double semicolons also on the default cause

Olliver Schinagl
2021-10-07 09:30:41 +02:00
parent a34f416609
commit d3efa7c15e

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