Skip to content

Commit 5a2f648

Browse files
committed
Fix 1656 - & needs specific quoting under Windows
1 parent c6c5b74 commit 5a2f648

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ task :setup_github_pages, :repo do |t, args|
351351
mkdir deploy_dir
352352
cd "#{deploy_dir}" do
353353
system "git init"
354-
system "echo 'My Octopress Page is coming soon …' > index.html"
354+
system 'echo "My Octopress Page is coming soon …" > index.html'
355355
system "git add ."
356356
system "git commit -m \"Octopress init\""
357357
system "git branch -m gh-pages" unless branch == 'master'

0 commit comments

Comments
 (0)