Using new command structure in Rakefile

This commit is contained in:
Parker Moore 2013-01-11 23:59:21 -08:00
parent 14cabab254
commit 3d093f0035
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ namespace :site do
# Generate the site in server mode. # Generate the site in server mode.
puts "Running Jekyll..." puts "Running Jekyll..."
Dir.chdir("site") do Dir.chdir("site") do
sh "#{File.expand_path('bin/jekyll', File.dirname(__FILE__))} --server" sh "#{File.expand_path('bin/jekyll', File.dirname(__FILE__))} serve --watch"
end end
end end