diff options
author | Marc Cornellà <hello@mcornella.com> | 2023-08-29 10:27:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-29 10:27:36 +0200 |
commit | 000be72dd0c2f668cd94b36c69e45dec7b06a23e (patch) | |
tree | 13e23d3561ce8b479973eb6b8afd10017a36dce3 | |
parent | 03a0d5bbaedc732436b5c67b166cde954817cc2f (diff) | |
download | zsh-000be72dd0c2f668cd94b36c69e45dec7b06a23e.tar.gz zsh-000be72dd0c2f668cd94b36c69e45dec7b06a23e.tar.bz2 zsh-000be72dd0c2f668cd94b36c69e45dec7b06a23e.zip |
fix(updater): disable `nounset` to avoid warnings (#11856)
-rwxr-xr-x | tools/upgrade.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/upgrade.sh b/tools/upgrade.sh index 34ff3f027..f7a263d66 100755 --- a/tools/upgrade.sh +++ b/tools/upgrade.sh @@ -1,4 +1,5 @@ #!/usr/bin/env zsh +set +u # disable nounset local ret=0 # exit code |