cmd/update.sh: fix some fflags throwing errors on update report

This commit is contained in:
Bo Anderson 2023-06-22 15:18:14 +01:00
parent 8d9aa9070a
commit 4b48ea4509
No known key found for this signature in database
GPG Key ID: 3DB94E204E137D65

View File

@ -347,9 +347,15 @@ homebrew-update() {
--verbose) HOMEBREW_VERBOSE=1 ;;
--debug) HOMEBREW_DEBUG=1 ;;
--quiet) HOMEBREW_QUIET=1 ;;
--merge) HOMEBREW_MERGE=1 ;;
--merge)
shift
HOMEBREW_MERGE=1
;;
--force) HOMEBREW_UPDATE_FORCE=1 ;;
--simulate-from-current-branch) HOMEBREW_SIMULATE_FROM_CURRENT_BRANCH=1 ;;
--simulate-from-current-branch)
shift
HOMEBREW_SIMULATE_FROM_CURRENT_BRANCH=1
;;
--auto-update) export HOMEBREW_UPDATE_AUTO=1 ;;
--*) ;;
-*)