From f7eacb7666ca2b5c2088f6451799b889bbdca7fc Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Tue, 1 Jan 2013 19:44:11 -0500 Subject: [PATCH] Using local jekyll bin to generate docs site --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index fc2ea0ee..60ba14d7 100644 --- a/Rakefile +++ b/Rakefile @@ -130,7 +130,7 @@ namespace :site do # Generate the site in server mode. puts "Running Jekyll..." - sh "cd site && jekyll --server" + sh "cd site && #{File.expand_path('bin/jekyll', File.dirname(__FILE__))} --server" end desc "Commit the local site to the gh-pages branch and publish to GitHub Pages"