Browse code

Fixed 'rake preview on fails vanilla install' bug

Kevin W. Gisi authored on 03/08/2010 at 05:10:59
Showing 1 changed files
... ...
@@ -182,9 +182,7 @@ task :stop_serve do
182 182
 end
183 183
 
184 184
 desc "preview the site in a web browser"
185
-multitask :preview => [:generate, :start_serve, :watch] do
186
-end
187
-
185
+task :preview => [:generate, :start_serve, :watch]
188 186
 
189 187
 desc "Build an XML sitemap of all html files."
190 188
 task :sitemap do
... ...
@@ -217,4 +215,4 @@ task :sitemap do
217 217
     sitemap.puts %Q{</urlset>}
218 218
     puts "Created #{site}/sitemap.xml"
219 219
   end
220
-end
221 220
\ No newline at end of file
221
+end