Browse Source

Merge pull request #5991 from h3ssan/refactor/update-script-help-exit

Refactor: `update.sh` script with `--help` should exit with status code 0
Niklas Meyer 1 year ago
parent
commit
76194be7dd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      update.sh

+ 1 - 1
update.sh

@@ -409,7 +409,7 @@ while (($#)); do
   -f|--force           -   Force update, do not ask questions
   -d|--dev             -   Enables Developer Mode (No Checkout of update.sh for tests)
 '
-    exit 1
+    exit 0
   esac
   shift
 done