fastlane-plugin-ensure_xcode_build_version 0.1.1.1 → 0.1.1.2
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: 2c4094877593f4323fecfc123dcb9a5981f4875e
|
|
4
|
+
data.tar.gz: f152fb1f667a18cadeb4e9042f41788c18a70e6e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf005c993c90ef870e7ac8beeff3b01440b8da9fe9ae1c1ed82fa3bcd8c93c94177c825bc124dd80546d532b7c671cf7225addadd5610c21c12655d011fc06e0
|
|
7
|
+
data.tar.gz: 548d01c4e1ee21a858929f404b1667bb38da96eccab64f0b5d0bb3f02481743c1b959397aa40f6f64f1271f1496e120b5b7b933ab1dbf070cd545ed4aab3c53b
|
|
@@ -3,8 +3,15 @@
|
|
|
3
3
|
# We have to unset those variables for rbenv, rvm and when the user uses bundler
|
|
4
4
|
unset RUBYLIB
|
|
5
5
|
unset RUBYOPT
|
|
6
|
-
unset
|
|
7
|
-
|
|
8
|
-
unset
|
|
6
|
+
# If we unset Bundle related path, we got errors:
|
|
7
|
+
# /Users/distiller/ookami-ios/vendor/bundle/ruby/2.3.0/bin/xcversion:22:in `<main>': undefined method `activate_bin_path' for Gem:Module (NoMethodError)
|
|
8
|
+
# unset BUNDLE_BIN_PATH
|
|
9
|
+
# unset _ORIGINAL_GEM_PATH
|
|
10
|
+
# unset BUNDLE_GEMFILE
|
|
11
|
+
# Even if we do not use rbenv in some environments such as CircleCI,
|
|
12
|
+
# We also need to unset GEM_HOME and GEM_PATH explicitly.
|
|
13
|
+
# More information https://github.com/fastlane/fastlane/issues/6277
|
|
14
|
+
unset GEM_HOME
|
|
15
|
+
unset GEM_PATH
|
|
9
16
|
|
|
10
17
|
xcversion selected | tail -1 | xargs echo -n
|