Skip to content

Commit

Permalink
Vscode extension : fix type in Make file
Browse files Browse the repository at this point in the history
  • Loading branch information
Alidra committed May 17, 2024
1 parent 230bfec commit 1dc0352
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ ifeq ($(PAT),)
# The extension is only published when merge occurs.
echo "The \"PAT\" secret is not set. Please check a PAT exists with permissions to publish to Vscode market"
else
ifeq ('master', $(GITHUB_REF_NAME))
ifeq ("$(GITHUB_REF_NAME)", "master")
# The extension is only published when code is pushed to master to avoid publishing from feature branches
cd editors/vscode && vsce publish -p ${PAT}
else
Expand Down

0 comments on commit 1dc0352

Please sign in to comment.