From 3ca95933a19df25340ff2a6305c6f7282d82280a Mon Sep 17 00:00:00 2001 From: Erin Bleiweiss Date: Thu, 27 Sep 2018 13:13:25 -0500 Subject: [PATCH] Update help text. --- lib/msf/ui/console/command_dispatcher/developer.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/msf/ui/console/command_dispatcher/developer.rb b/lib/msf/ui/console/command_dispatcher/developer.rb index df8686f260..7b5091f8fa 100644 --- a/lib/msf/ui/console/command_dispatcher/developer.rb +++ b/lib/msf/ui/console/command_dispatcher/developer.rb @@ -215,14 +215,15 @@ class Msf::Ui::Console::CommandDispatcher::Developer def cmd_reload_lib(*args) opts = OptionParser.new do |opts| opts.banner = 'Usage: reload_lib lib/to/reload.rb [...]' - opts.separator 'Reload one or more library files from specified paths.' + opts.separator 'Reload specified Ruby library files.' opts.separator '' opts.on '-h', '--help', 'Help banner.' do return print(opts.help) end - opts.on '-a', '--all', 'Reload all changed files in your current git working tree.' do + opts.on '-a', '--all', 'Reload all* changed files in your current git working tree. + *Excludes modules and non-Ruby files.' do reload_diff_files return end