Skip to content

Commit 5926abf

Browse files
committed
Change compiling order
1 parent d28d6c0 commit 5926abf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Rakefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ task :compile do
77

88
puts "Compile:"
99

10-
puts " haml > html"
11-
system("haml index.haml > index.html")
12-
1310
puts " coffee > js"
1411
system("coffee -c assets/advent.coffee")
1512

@@ -24,5 +21,8 @@ task :compile do
2421
:encoding => Encoding::UTF_8
2522
)
2623

24+
puts " haml > html"
25+
system("haml index.haml > index.html")
26+
2727
puts "Done!"
2828
end

0 commit comments

Comments
 (0)