From 3873b7a7687bf2a251b68284752a1b0b941d1f74 Mon Sep 17 00:00:00 2001 From: andryyy Date: Sat, 2 Mar 2019 23:48:20 +0100 Subject: [PATCH] [Update] Add /opt/bin to PATH, fixes #2391 --- update.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/update.sh b/update.sh index 17e818f9..4fc668fb 100755 --- a/update.sh +++ b/update.sh @@ -6,9 +6,12 @@ if [ "$(id -u)" -ne "0" ]; then exit 1 fi -#exit on error and pipefail +# Exit on error and pipefail set -o pipefail +# Add /opt/bin to PATH +PATH=$PATH:/opt/bin + umask 0022 for bin in curl docker-compose docker git awk sha1sum; do