fix: install and build steps should be wrapped in parens, otherwise build may not execute (#1098)

pull/1103/head
Randall Morey 5 years ago committed by GitHub
parent 5500566fca
commit 5f1e63be2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -12,7 +12,7 @@ fi
(
cd "$UI_CLONE_DIR"
if ! yarn install && yarn build; then
if ! (yarn install && yarn build); then
echo "Please ensure Node v14+ and Yarn v1.22.10+ are installed."
fi
)

Loading…
Cancel
Save