6 lines
122 B
Ruby
6 lines
122 B
Ruby
task :default => %i[build]
|
|
|
|
task :build do
|
|
sh 'jekyll build --profile --trace --config _config.yml,_config.dev.yml'
|
|
end
|