From 31adeee1dfda4907cadebceda5d59ac0845624a1 Mon Sep 17 00:00:00 2001 From: Frederic Hemberger Date: Sun, 18 Sep 2011 14:07:43 +0200 Subject: Wraps git commit message in double quotes, fixes #139 --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Rakefile') diff --git a/Rakefile b/Rakefile index 80d027d5..df96f92b 100644 --- a/Rakefile +++ b/Rakefile @@ -232,7 +232,7 @@ multitask :push do system "git add -u" puts "\n## Commiting: Site updated at #{Time.now.utc}" message = "Site updated at #{Time.now.utc}" - system "git commit -m '#{message}'" + system "git commit -m \"#{message}\"" puts "\n## Pushing generated #{deploy_dir} website" system "git push origin #{deploy_branch}" puts "\n## Github Pages deploy complete" @@ -284,7 +284,7 @@ task :config_deploy, :branch do |t, args| system "git clean -fdx" system "echo 'My Octopress Page is coming soon …' > index.html" system "git add ." - system "git commit -m 'Octopress init'" + system "git commit -m \"Octopress init\"" rakefile = IO.read(__FILE__) rakefile.sub!(/deploy_branch(\s*)=(\s*)(["'])[\w-]*["']/, "deploy_branch\\1=\\2\\3#{args.branch}\\3") rakefile.sub!(/deploy_default(\s*)=(\s*)(["'])[\w-]*["']/, "deploy_default\\1=\\2\\3push\\3") -- cgit v1.2.1