bootstrap: minor refactor

This commit is contained in:
Fernando Schauenburg 2021-08-09 00:40:51 +02:00
parent 380b4556ff
commit 5f22148d5a

View file

@ -9,13 +9,11 @@ usage() {
} }
DRY_RUN=true DRY_RUN=true
while getopts 'fh' opt; do while getopts 'fh' opt; do case "$opt" in
case "$opt" in f) DRY_RUN=false;;
f) DRY_RUN=false;; h) usage; exit 0;;
h) usage; exit 0;; *) usage; exit 1;;
*) usage; exit 1;; esac done
esac
done
DEFAULT_GIT_USER="Fernando Schauenburg" DEFAULT_GIT_USER="Fernando Schauenburg"
DEFAULT_GIT_EMAIL="fernando@schauenburg.me" DEFAULT_GIT_EMAIL="fernando@schauenburg.me"