diff options
author | Tim Smith <tim@cozy.co> | 2015-05-01 21:48:58 -0700 |
---|---|---|
committer | Tim Smith <tim@cozy.co> | 2015-05-01 21:48:58 -0700 |
commit | 8240819353e8afab19cd9aa4970e5862f542224b (patch) | |
tree | 07bc88248ef813a3c633658a0a0fcea823e39238 /lib/chef/cookbook_loader.rb | |
parent | e2b7e4e76cd8dae088299137d991a0455d87a109 (diff) | |
download | chef-8240819353e8afab19cd9aa4970e5862f542224b.tar.gz |
Update error messages with a link to the docs site
Diffstat (limited to 'lib/chef/cookbook_loader.rb')
-rw-r--r-- | lib/chef/cookbook_loader.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/cookbook_loader.rb b/lib/chef/cookbook_loader.rb index c05fedb141..01b8a29a28 100644 --- a/lib/chef/cookbook_loader.rb +++ b/lib/chef/cookbook_loader.rb @@ -106,7 +106,7 @@ class Chef if @cookbooks_by_name.has_key?(cookbook.to_sym) or load_cookbook(cookbook.to_sym) @cookbooks_by_name[cookbook.to_sym] else - raise Exceptions::CookbookNotFoundInRepo, "Cannot find a cookbook named #{cookbook.to_s}; did you forget to add metadata to a cookbook? (http://wiki.opscode.com/display/chef/Metadata)" + raise Exceptions::CookbookNotFoundInRepo, "Cannot find a cookbook named #{cookbook.to_s}; did you forget to add metadata to a cookbook? (https://docs.chef.io/config_rb_metadata.html" end end |