diff options
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -4,10 +4,13 @@ task :default => [:buildsite] desc 'Build the site' task :buildsite do - def Jekyll::env - "production" - end - Jekyll::Commands::Build.process({}) + #def Jekyll::env + # "production" + #end + # fuck this, the whole process won't work unless I figure out how to activate all plugins + ###Jekyll::Commands::Build.process({}) + ENV["JEKYLL_ENV"]="production" + sh "bundle", "exec", "jekyll", "build" end desc 'Clean up built files' |