When running the setup_github_pages
task, the
ampersand in …
can be escaped with a caret symbol.
Rakefile.rb
@@ -345,7 +345,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'