Skip to content

Commit

Permalink
More fixes to release script (#7274)
Browse files Browse the repository at this point in the history
  • Loading branch information
joehan authored Jun 4, 2024
1 parent 920d938 commit 9f29dab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/publish-vsce.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ printusage() {
VERSION=$1

CLI_VERSION=$2
if [[ $VERSION == "" || $CLI_VERSION == ""]]; then
if [[ ($VERSION == "" || $CLI_VERSION == "") ]]; then
printusage
exit 1
elif [[ ! ($VERSION == "patch" || $VERSION == "minor" || $VERSION == "major") ]]; then
Expand Down
3 changes: 1 addition & 2 deletions scripts/publish/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,5 @@ gcloud --project fir-tools-builds \
builds \
submit \
--machine-type=e2-highcpu-8 \
--substitutions=_VERSION=$VERSION \
--substitutions=_VSCODE_VERSION=$VSCODE_VERSION \
--substitutions=_VERSION=$VERSION,_VSCODE_VERSION=$VSCODE_VERSION \
.

0 comments on commit 9f29dab

Please sign in to comment.