Browse code

Fix generation of stylesheets

Frederic Hemberger authored on 24/09/2011 at 09:31:57
Showing 1 changed files
... ...
@@ -49,7 +49,7 @@ desc "Generate jekyll site"
49 49
 task :generate do
50 50
   raise "### You haven't set anything up yet. First run `rake install` to set up an Octopress theme." unless File.directory?(source_dir)
51 51
   puts "## Generating Site with Jekyll"
52
-  system "compass compile"
52
+  system "compass compile --css-dir #{source_dir}/stylesheets"
53 53
   system "jekyll"
54 54
 end
55 55