From 4b0ed06a2651ec71f8f193be0c602f0d0f88e6b7 Mon Sep 17 00:00:00 2001 From: Spike Curtis Date: Tue, 31 May 2022 13:50:18 -0700 Subject: [PATCH] Remove set -u on yarn_install.sh to allow it to run on zsh (#1930) Signed-off-by: Spike Curtis --- scripts/yarn_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/yarn_install.sh b/scripts/yarn_install.sh index 94cb0369cb..9ebf3a8d49 100755 --- a/scripts/yarn_install.sh +++ b/scripts/yarn_install.sh @@ -5,7 +5,7 @@ # # Usage: yarn_install.sh [optional extra flags] -set -euo pipefail +set -eo pipefail SCRIPT_DIR=$(dirname "${BASH_SOURCE[0]}") PROJECT_ROOT=$(cd "$SCRIPT_DIR" && git rev-parse --show-toplevel)