license-acceptance 1.0.6 → 1.0.7
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/Gemfile.lock +1 -1
- data/lib/license_acceptance/config.rb +2 -1
- data/lib/license_acceptance/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: 75f4817311fb2680b07268012f59a6914e791a26f3fa573e69906ada344cdb29
|
|
4
|
+
data.tar.gz: 91006274853ba30e7b664791c3cac8403b8369513d5e4bbec36889c41d6046cc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 942f85d5746e6e6da33ae6b9178294a9fdc9bbe5911c104acdddfd25da426bb3b9c93c3e240135931e392c1b6e24da605735e34b7f59465d817b069ccebd4c1b
|
|
7
|
+
data.tar.gz: 989450866a2d846a3ee4519c7db08156391a0470cd9cea2e80abd41ad6641dc04f083e4c0d136635a9878ca8b707efe6d0340dd3bcb5b2e8650cdaf3df4c4085
|
data/Gemfile.lock
CHANGED
|
@@ -21,7 +21,8 @@ module LicenseAcceptance
|
|
|
21
21
|
|
|
22
22
|
def default_license_locations
|
|
23
23
|
if windows?
|
|
24
|
-
|
|
24
|
+
root = ENV["HOMEDRIVE"] || "C:"
|
|
25
|
+
l = [ File.join(root, "chef/accepted_licenses/") ]
|
|
25
26
|
unless is_root?
|
|
26
27
|
# Look through a list of possible user locations and pick the first one that exists
|
|
27
28
|
# copied from path_helper.rb in chef-config gem
|