Skip to content

Commit

Permalink
Fix shell quote on the release task
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfranca committed Nov 19, 2014
1 parent 5896f04 commit f840582
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/release.rb
Expand Up @@ -102,7 +102,7 @@
abort "[ABORTING] `git status` reports a dirty tree. Make sure all changes are committed"
end

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

0 comments on commit f840582

Please sign in to comment.