Merge pull request #4177 from rebornix/FixCleanCommandOptions

Merge pull request 4177
This commit is contained in:
Parker Moore 2015-11-23 08:24:44 -08:00
commit 6814bc8e63
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ module Jekyll
add_build_options(c)
c.action do |args, _|
Jekyll::Commands::Clean.process({})
c.action do |args, options|
Jekyll::Commands::Clean.process(options)
end
end
end