Skip to content

Commit

Permalink
Fix syntax error in release script (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
David Fahlander committed Jan 15, 2025
1 parent 90594f5 commit 2101655
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ validate_semver $next_version

if echo "$next_version" | grep -q "-"; then
NPMTAG="next$master_suffix"
elif "$1" = "canary"; then
elif [ "$1" = "canary" ]; then
NPMTAG="canary$master_suffix"
else
NPMTAG="latest$master_suffix"
Expand Down

0 comments on commit 2101655

Please sign in to comment.