chef-utils 19.2.12 → 19.2.110
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 +4 -4
- data/lib/chef-utils/dsl/default_paths.rb +1 -1
- data/lib/chef-utils/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 345320417f3afeda14b82f5baea4cfc57d6f99c4e2f2f6e6f2fd9a64ea16b4aa
|
|
4
|
+
data.tar.gz: 3d2365af846144a6ba5d192694b69eaef2cdc38e44d063c9eab0c1b164d8e5e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 30fbc11ebb7fd9915772df31ab4c34bb32e6dd9414d6400c7f2959b671023845bf5fa017f4fb4bf29e173a1341331cf4398d306989fd61834f42434957d10ebf
|
|
7
|
+
data.tar.gz: 28adefdc1d4a2e9424a804c9a737033861254c278a10538b3bfdfd6f123f059df28c03089885c85c5b3967843572fc08ca3adebf4dcabffb11d736753b889e9e
|
|
@@ -29,7 +29,7 @@ module ChefUtils
|
|
|
29
29
|
env_path = env ? env["PATH"] : __env_path
|
|
30
30
|
env_path = "" if env_path.nil?
|
|
31
31
|
path_separator = ChefUtils.windows? ? ";" : ":"
|
|
32
|
-
# ensure the Ruby and Gem bindirs are included for
|
|
32
|
+
# ensure the Ruby and Gem bindirs are included for packaged chef installs (e.g., habitat)
|
|
33
33
|
new_paths = env_path.split(path_separator)
|
|
34
34
|
[ __ruby_bindir, __gem_bindir ].compact.each do |path|
|
|
35
35
|
new_paths = [ path ] + new_paths unless new_paths.include?(path)
|
data/lib/chef-utils/version.rb
CHANGED