From c361f16fcf2e474174db29efbf72b32944f5db08 Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Thu, 27 Sep 2018 09:52:51 -0600 Subject: [PATCH] remove duplicate option --- system/src/Grav/Console/Cli/CacheCommand.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/system/src/Grav/Console/Cli/CacheCommand.php b/system/src/Grav/Console/Cli/CacheCommand.php index 8f80f51c0..64bf2484b 100644 --- a/system/src/Grav/Console/Cli/CacheCommand.php +++ b/system/src/Grav/Console/Cli/CacheCommand.php @@ -30,9 +30,8 @@ class CacheCommand extends ConsoleCommand ->addOption('images-only', null, InputOption::VALUE_NONE, 'If set will remove only images/*') ->addOption('cache-only', null, InputOption::VALUE_NONE, 'If set will remove only cache/*') ->addOption('tmp-only', null, InputOption::VALUE_NONE, 'If set will remove only tmp/*') - ->addOption('tmp-only', null, InputOption::VALUE_NONE, 'If set will remove only tmp/*') - ->setHelp('The clear-cache deletes all cache files'); + ->setHelp('The cache command allows you to interact with Grav cache'); } /**