Remove set -u on yarn_install.sh to allow it to run on zsh (#1930)

Signed-off-by: Spike Curtis <spike@coder.com>
This commit is contained in:
Spike Curtis 2022-05-31 13:50:18 -07:00 committed by GitHub
parent 56ec53d04b
commit 4b0ed06a26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)