Skip to content

Commit f840582

Browse files
committed
Fix shell quote on the release task
1 parent 5896f04 commit f840582

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/release.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
abort "[ABORTING] `git status` reports a dirty tree. Make sure all changes are committed"
103103
end
104104

105-
unless ENV['SKIP_TAG'] || `git tag | grep '^#{tag}$`.strip.empty?
105+
unless ENV['SKIP_TAG'] || `git tag | grep '^#{tag}$'`.strip.empty?
106106
abort "[ABORTING] `git tag` shows that #{tag} already exists. Has this version already\n"\
107107
" been released? Git tagging can be skipped by setting SKIP_TAG=1"
108108
end

0 commit comments

Comments
 (0)