Skip to content

Commit

Permalink
Fix single quotes on windows (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
tknerr authored and sethvargo committed Oct 21, 2013
1 parent 739d6cf commit 673bfee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/stove/cookbook.rb
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def release!

git "add metadata.rb"
git "add CHANGELOG.md"
git "commit -m 'Version bump to #{tag_version}'"
git "commit -m \"Version bump to #{tag_version}\""
git "push #{options[:remote]} #{options[:branch]}"

if options[:github]
Expand Down Expand Up @@ -145,7 +145,7 @@ def release!
if options[:git]
Dir.chdir(path) do
git "add metadata.rb"
git "commit -m 'Version bump to #{tag_version}'"
git "commit -m \"Version bump to #{tag_version}\""
git "push #{options[:remote]} #{options[:branch]}"
end
end
Expand Down

0 comments on commit 673bfee

Please sign in to comment.