Skip to content

Commit f0177d5

Browse files
author
mrmrs
committed
Adding a clean task. Deletes _site directory.
rm -rf for the win right yo.
1 parent 0351839 commit f0177d5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Rakefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,8 @@ desc "Start Sass so that is compiles to css upon file save"
1010
task :sass do
1111
system "sass --watch _sass:css"
1212
end # task :sass
13+
14+
desc "Remove _site from directory before committing"
15+
task :clean do
16+
system "rm -rf _site"
17+
end # task :clean

0 commit comments

Comments
 (0)