diff --git a/update.sh b/update.sh index 2352fe6a..5b38d7d0 100755 --- a/update.sh +++ b/update.sh @@ -3,6 +3,8 @@ #exit on error and pipefail set -o pipefail +umask 0022 + for bin in curl docker-compose docker git awk sha1sum; do if [[ -z $(which ${bin}) ]]; then echo "Cannot find ${bin}, exiting..."; exit 1; fi done