Merge pull request #3828 from superlukas/fix-clean-command

Merge pull request 3828
This commit is contained in:
Alfred Xing 2015-09-02 20:22:14 -07:00
commit 93d282a5c1
1 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,8 @@ module Jekyll
c.syntax 'clean [subcommand]'
c.description 'Clean the site (removes site output and metadata file) without building.'
add_build_options(c)
c.action do |args, _|
Jekyll::Commands::Clean.process({})
end