diff options
author | Frederic Hemberger <mail@frederic-hemberger.de> | 2011-12-10 03:21:59 -0800 |
---|---|---|
committer | Frederic Hemberger <mail@frederic-hemberger.de> | 2011-12-10 03:21:59 -0800 |
commit | 7f3ad1c1cc40d6598a8d04eb45f146943c120d3b (patch) | |
tree | 9d202b8ad7c7da08909a8ed51cdf8d7ec95be79c /Rakefile | |
parent | d99434bca93510f9d7310b41690b824b70215597 (diff) | |
parent | 6714e5c7f5b3a874732e58dd2e6383e184da7019 (diff) | |
download | my_new_personal_website-7f3ad1c1cc40d6598a8d04eb45f146943c120d3b.tar.xz my_new_personal_website-7f3ad1c1cc40d6598a8d04eb45f146943c120d3b.zip |
Merge pull request #293 from imathis/generate_environment
Introduce distinction between preview/productive site generation
Diffstat (limited to '')
-rw-r--r-- | Rakefile | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -59,7 +59,7 @@ task :watch do raise "### You haven't set anything up yet. First run `rake install` to set up an Octopress theme." unless File.directory?(source_dir) puts "Starting to watch source with Jekyll and Compass." system "compass compile --css-dir #{source_dir}/stylesheets" unless File.exist?("#{source_dir}/stylesheets/screen.css") - jekyllPid = Process.spawn("jekyll --auto") + jekyllPid = Process.spawn({"OCTOPRESS_ENV"=>"preview"}, "jekyll --auto") compassPid = Process.spawn("compass watch") trap("INT") { @@ -75,7 +75,7 @@ task :preview do raise "### You haven't set anything up yet. First run `rake install` to set up an Octopress theme." unless File.directory?(source_dir) puts "Starting to watch source with Jekyll and Compass. Starting Rack on port #{server_port}" system "compass compile --css-dir #{source_dir}/stylesheets" unless File.exist?("#{source_dir}/stylesheets/screen.css") - jekyllPid = Process.spawn("jekyll --auto") + jekyllPid = Process.spawn({"OCTOPRESS_ENV"=>"preview"}, "jekyll --auto") compassPid = Process.spawn("compass watch") rackupPid = Process.spawn("rackup --port #{server_port}") @@ -200,6 +200,13 @@ end desc "Default deploy task" task :deploy do + # Check if preview posts exist, which should not be published + if File.exists?(".preview-mode") + puts "## Found posts in preview mode, regenerating files ..." + File.delete(".preview-mode") + Rake::Task[:generate].execute + end + Rake::Task[:copydot].invoke(source_dir, public_dir) Rake::Task["#{deploy_default}"].execute end |