summaryrefslogtreecommitdiffhomepage
path: root/Rakefile
blob: dc1ce9e72f0ce742e029eed4a4b79c320dfc9c10 (plain) (blame)
1
2
3
4
5
6
7
8
9
task :pdf => "_site/index.html" do
    sh "wkhtmltopdf _site/index.html cv_eliseo_papa.pdf"
end

file "_site/index.html" do
    sh "jekyll"
end

task :default => ["html"]