From 9a0c4a5c8f6f5b6e2e32bd63b7b8cdc07ffe54ae Mon Sep 17 00:00:00 2001 From: erwanlr Date: Wed, 25 Sep 2019 10:02:15 +0100 Subject: [PATCH] Fixes #1399 --- app/controllers/enumeration/cli_options.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/enumeration/cli_options.rb b/app/controllers/enumeration/cli_options.rb index 852b94921..783c22b61 100644 --- a/app/controllers/enumeration/cli_options.rb +++ b/app/controllers/enumeration/cli_options.rb @@ -69,7 +69,7 @@ def cli_plugins_opts OptInteger.new( ['--plugins-threshold THRESHOLD', 'Raise an error when the number of detected plugins via known locations reaches the threshold. ' \ - 'Set to 0 to ignore the threshold.'], default: 100 + 'Set to 0 to ignore the threshold.'], default: 100, advanced: true ) ] end @@ -98,7 +98,7 @@ def cli_themes_opts OptInteger.new( ['--themes-threshold THRESHOLD', 'Raise an error when the number of detected themes via known locations reaches the threshold. ' \ - 'Set to 0 to ignore the threshold.'], default: 20 + 'Set to 0 to ignore the threshold.'], default: 20, advanced: true ) ] end