provisioners/chef: fix syntax error

This commit is contained in:
Mitchell Hashimoto 2013-09-05 23:59:11 -07:00
parent a06742b8ef
commit 0879c1d624
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ module VagrantPlugins
errors << I18n.t("vagrant.config.chef.cookbooks_path_empty") if \ errors << I18n.t("vagrant.config.chef.cookbooks_path_empty") if \
!cookbooks_path || [cookbooks_path].flatten.empty? !cookbooks_path || [cookbooks_path].flatten.empty?
errors << I18n.t("vagrant.config.chef.environment_path_required") if \ errors << I18n.t("vagrant.config.chef.environment_path_required") if \
environment && environments_path.empty?) environment && environments_path.empty?
{ "chef solo provisioner" => errors } { "chef solo provisioner" => errors }
end end