From 5f1e63be2f965a24e196427db5eff14dc6042d45 Mon Sep 17 00:00:00 2001 From: Randall Morey Date: Fri, 9 Apr 2021 15:29:33 -0400 Subject: [PATCH] fix: install and build steps should be wrapped in parens, otherwise build may not execute (#1098) --- scripts/uigen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/uigen.sh b/scripts/uigen.sh index 7eff8916aa..69b9d9e6d6 100755 --- a/scripts/uigen.sh +++ b/scripts/uigen.sh @@ -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 )