diff options
Diffstat (limited to '')
-rw-r--r-- | Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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") |