5 lines
97 B
Ruby
5 lines
97 B
Ruby
|
desc "build the site"
|
||
|
task :site do
|
||
|
system("staticmatic build .")
|
||
|
system("cp -r site/ .")
|
||
|
end
|