diff options
Diffstat (limited to 'lib/chef')
-rw-r--r-- | lib/chef/knife/delete.rb | 2 | ||||
-rw-r--r-- | lib/chef/knife/download.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/knife/delete.rb b/lib/chef/knife/delete.rb index ac162342a6..cf6ca09878 100644 --- a/lib/chef/knife/delete.rb +++ b/lib/chef/knife/delete.rb @@ -31,7 +31,7 @@ class Chef def run if name_args.length == 0 show_usage - ui.fatal("Must specify at least one argument. If you want to delete everything in this directory, type \"knife delete --recurse .\"") + ui.fatal("You must specify at least one argument. If you want to delete everything in this directory, run \"knife delete --recurse .\"") exit 1 end diff --git a/lib/chef/knife/download.rb b/lib/chef/knife/download.rb index b115b8ec8a..ac8420d468 100644 --- a/lib/chef/knife/download.rb +++ b/lib/chef/knife/download.rb @@ -49,7 +49,7 @@ class Chef def run if name_args.length == 0 show_usage - ui.fatal("You must specify at least one argument. If you want to download everything in this directory, type \"knife download .\"") + ui.fatal("You must specify at least one argument. If you want to download everything in this directory, run \"knife download .\"") exit 1 end |