vagrant-librarian-chef 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a89e31c138123cff911268f51b0becf4f6e85fc1
|
|
4
|
+
data.tar.gz: 7d70dd0e3abf2beceb36f32a157ed7d62c2193d2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf46c83c3ead1229a52d68e60d3623a531ef039a4fc624da2b37ca5b736349b450a1bc64e418d9f3942e3ab1704b813757bcaff8224aa4393ff81f5c14a85662
|
|
7
|
+
data.tar.gz: 1fe36730ed152d872bae4e6039085135070d12e3af0adcc659aa1d3bb69bb3e8cdaa6dbe2c56ad42870b6e6c6fd0c6d6e7051bffcf9d3e6a38707d2d6cc6fcf2
|
|
@@ -31,10 +31,10 @@ module VagrantPlugins
|
|
|
31
31
|
|
|
32
32
|
def get_project_path(env, config)
|
|
33
33
|
# look for a Cheffile in the configured cheffile_dir
|
|
34
|
-
if FileTest.exist? config.cheffile_path
|
|
35
|
-
return config.cheffile_dir
|
|
36
|
-
elsif FileTest.exist? File.join(env[:root_path], config.cheffile_path)
|
|
34
|
+
if FileTest.exist? File.join(env[:root_path], config.cheffile_path)
|
|
37
35
|
return File.join(env[:root_path], config.cheffile_dir)
|
|
36
|
+
elsif FileTest.exist? File.expand_path(config.cheffile_path)
|
|
37
|
+
return File.expand_path(config.cheffile_dir)
|
|
38
38
|
end
|
|
39
39
|
end
|
|
40
40
|
end
|