From 6d196275fcfa25938a3f0ff8fcbee3f58939cb1a Mon Sep 17 00:00:00 2001 From: Lukas Date: Tue, 30 Jun 2015 20:53:31 +0200 Subject: [PATCH] Add build options (fixes #3744) --- lib/jekyll/commands/clean.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/jekyll/commands/clean.rb b/lib/jekyll/commands/clean.rb index 7d787d30..bf05dbe0 100644 --- a/lib/jekyll/commands/clean.rb +++ b/lib/jekyll/commands/clean.rb @@ -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