From 45e8eb727539ca8efe55e375d8e0aacad959c063 Mon Sep 17 00:00:00 2001 From: Sudarsan Reddy Date: Mon, 5 Dec 2022 17:50:49 +0000 Subject: [PATCH] TUN-6984: [CI] Don't fail on unset. Dont fail on bash unset (set -u) because we initialise to machine defaults if the variables are unset within this script. --- .teamcity/build-macos.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.teamcity/build-macos.sh b/.teamcity/build-macos.sh index b5f43f87..0770df58 100755 --- a/.teamcity/build-macos.sh +++ b/.teamcity/build-macos.sh @@ -1,6 +1,6 @@ #!/bin/bash -set -euxo pipefail +set -exo pipefail if [[ "$(uname)" != "Darwin" ]] ; then echo "This should be run on macOS"