From 367704f4b3efa947e1b1fcaeecfd2412e17a788d Mon Sep 17 00:00:00 2001 From: Patrick Wolfert Date: Mon, 4 Oct 2021 13:44:09 -0700 Subject: [PATCH] [NO-TICKET] Fix syntax error in publish bash script (#1167) Fix syntax error in publish bash script --- publish.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/publish.sh b/publish.sh index 99bd169401..160b5bab0c 100755 --- a/publish.sh +++ b/publish.sh @@ -25,7 +25,7 @@ yarn build echo "${GREEN}Publishing ${CYAN}$1${GREEN} to npm...${NC}" if [[ $1 == *"beta"* ]]; then NPM_TAG="--dist-tag beta" -elif +else NPM_TAG="" fi yarn lerna publish from-git $NPM_TAG