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.
This commit is contained in:
Sudarsan Reddy 2022-12-05 17:50:49 +00:00
parent 72503eeaaa
commit 45e8eb7275
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
set -euxo pipefail
set -exo pipefail
if [[ "$(uname)" != "Darwin" ]] ; then
echo "This should be run on macOS"