diff options
author | Seth Vargo <sethvargo@gmail.com> | 2014-11-03 19:22:16 -0500 |
---|---|---|
committer | Bryan McLellan <btm@loftninjas.org> | 2014-12-15 13:49:14 -0500 |
commit | 1e71a0388df573c78f424fb202f1e373e2a1e770 (patch) | |
tree | 868035a60929c11d1256bcd951347ab6170d5453 /lib/chef/knife | |
parent | dccc5d1a61597e7e34ed367d191c45b70f9aa18f (diff) | |
download | chef-1e71a0388df573c78f424fb202f1e373e2a1e770.tar.gz |
Use a real error class when metadata is not found
Diffstat (limited to 'lib/chef/knife')
-rw-r--r-- | lib/chef/knife/cookbook_site_install.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/knife/cookbook_site_install.rb b/lib/chef/knife/cookbook_site_install.rb index 865f806593..3242dd4297 100644 --- a/lib/chef/knife/cookbook_site_install.rb +++ b/lib/chef/knife/cookbook_site_install.rb @@ -179,7 +179,7 @@ class Chef return md end - raise "No metadata.rb or metadata.json!" + raise Chef::Exceptions::MetadataNotFound end end end |