From 5a2f6481c84c67aea67ea5757055906d74a04dfb Mon Sep 17 00:00:00 2001 From: Dan Lowe Date: Sun, 16 Nov 2014 23:05:14 -0500 Subject: [PATCH] Fix 1656 - & needs specific quoting under Windows --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 02df13b..c7ad504 100644 --- a/Rakefile +++ b/Rakefile @@ -351,7 +351,7 @@ task :setup_github_pages, :repo do |t, args| mkdir deploy_dir cd "#{deploy_dir}" do system "git init" - system "echo 'My Octopress Page is coming soon …' > index.html" + system 'echo "My Octopress Page is coming soon …" > index.html' system "git add ." system "git commit -m \"Octopress init\"" system "git branch -m gh-pages" unless branch == 'master'