aboutsummaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
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")