replaced not with ! in the if

This commit is contained in:
Eugenio Marzo 2017-07-12 15:32:39 +02:00
parent dd3d782659
commit 3a5331cbb2
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ module VagrantPlugins
end
def verify_chef_nodes_folder
if not File.exists? @config.nodes_path[0][1]
if !File.exists? @config.nodes_path[0][1]
raise ChefError, :missing_chef_node_folder
end
end