summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2015-09-26 23:29:55 -0700
committerTim Smith <tsmith84@gmail.com>2015-09-27 11:35:40 -0700
commit655189ad40cc2ff44795d473c60bb819805ef4d0 (patch)
treee9b0a62fc770f1fb39bfcb97fe057f9ecbf5cd08
parentabe044cfdf4ae4a2468bc61aaeeba8c6cfaf39ae (diff)
downloadchef-655189ad40cc2ff44795d473c60bb819805ef4d0.tar.gz
Fix error message to mention Supermarket not community site
Also Supermarket doesn't have a capital M
-rw-r--r--lib/chef/knife/cookbook_site_share.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/knife/cookbook_site_share.rb b/lib/chef/knife/cookbook_site_share.rb
index efd2e7f129..5784c3d73e 100644
--- a/lib/chef/knife/cookbook_site_share.rb
+++ b/lib/chef/knife/cookbook_site_share.rb
@@ -48,7 +48,7 @@ class Chef
:short => '-n',
:boolean => true,
:default => false,
- :description => "Don't take action, only print what files will be upload to SuperMarket."
+ :description => "Don't take action, only print what files will be upload to Supermarket."
def run
config[:cookbook_path] ||= Chef::Config[:cookbook_path]
@@ -94,7 +94,7 @@ class Chef
Chef::Log.debug("Removing local staging directory at #{tmp_cookbook_dir}")
FileUtils.rm_rf tmp_cookbook_dir
rescue => e
- ui.error("Error uploading cookbook #{cookbook_name} to the Opscode Cookbook Site: #{e.message}. Increase log verbosity (-VV) for more information.")
+ ui.error("Error uploading cookbook #{cookbook_name} to Supermarket: #{e.message}. Increase log verbosity (-VV) for more information.")
Chef::Log.debug("\n#{e.backtrace.join("\n")}")
exit(1)
end