diff options
author | Tim Smith <tsmith84@gmail.com> | 2016-03-05 21:06:40 -0800 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2016-03-05 21:21:39 -0800 |
commit | 85f5d356fe81e4ff0e2e3dfdc22ac370ac6df816 (patch) | |
tree | a5a05b98bc026412df8f004a115480372c127e38 /lib/chef/knife/upload.rb | |
parent | 9f298906fabed36b136314f5e2acb9793011d1ee (diff) | |
download | chef-85f5d356fe81e4ff0e2e3dfdc22ac370ac6df816.tar.gz |
Avoid sentence fragments in errors
This makes our error messaging more consistent
Diffstat (limited to 'lib/chef/knife/upload.rb')
-rw-r--r-- | lib/chef/knife/upload.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/knife/upload.rb b/lib/chef/knife/upload.rb index e04a58a969..f0ecaaae47 100644 --- a/lib/chef/knife/upload.rb +++ b/lib/chef/knife/upload.rb @@ -51,7 +51,7 @@ class Chef def run if name_args.length == 0 show_usage - ui.fatal("Must specify at least one argument. If you want to upload everything in this directory, type \"knife upload .\"") + ui.fatal("You must specify at least one argument. If you want to upload everything in this directory, run \"knife upload .\"") exit 1 end |