diff options
author | Tim Smith <tsmith84@gmail.com> | 2016-03-06 15:36:18 -0800 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2016-03-06 18:52:58 -0800 |
commit | be22d615639c8667f4b29c8f352812fff348620f (patch) | |
tree | 00c4dc87d3cba290624ae8d587b2aad588e69559 /lib | |
parent | 7e334f961c951c3df84cb24feb98b22607355bc0 (diff) | |
download | chef-be22d615639c8667f4b29c8f352812fff348620f.tar.gz |
Fix failing specs
Diffstat (limited to 'lib')
-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 |