From 273174f427a9b94be83fea81e657fea7ad067722 Mon Sep 17 00:00:00 2001 From: Sebastian Daniel Date: Tue, 1 Oct 2013 19:43:02 +0200 Subject: [PATCH] fix for quotes not woking when comitting on a windows machine. --- lib/middleman-deploy/commands.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/middleman-deploy/commands.rb b/lib/middleman-deploy/commands.rb index b03a0e1..e4eff73 100644 --- a/lib/middleman-deploy/commands.rb +++ b/lib/middleman-deploy/commands.rb @@ -185,7 +185,7 @@ EOF end `git add -A` - `git commit --allow-empty -am 'Automated commit at #{Time.now.utc} by #{Middleman::Deploy::PACKAGE} #{Middleman::Deploy::VERSION}'` + `git commit --allow-empty -am '"Automated commit at #{Time.now.utc} by #{Middleman::Deploy::PACKAGE} #{Middleman::Deploy::VERSION}"'` `git push -f origin #{branch}` end end