fastlane-plugin-altool 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 871d9ef73a44d46b086e7603c547c620f86ce67d
|
4
|
+
data.tar.gz: 6336407053a68fb6ed312049e7fb1ca068e992c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7cfc449d858c9e367dc91e7c8e13c7f7ffc0ce1ecbbe1d491229bcbfd1ba483ce342888fecde7112451127d4edefc42158a8f12e97529b7ed6eef4e608ec39aa
|
7
|
+
data.tar.gz: 2332ccfc511d28c4b3578b13f88a8736622bdbb71a7561fe552e270e44dbf15ee092dae174f82c74f29a6050a584fafbd0fe215d5acb944d36c1ad1538a7abed
|
@@ -5,8 +5,8 @@ module Fastlane
|
|
5
5
|
module Actions
|
6
6
|
class AltoolAction < Action
|
7
7
|
def self.run(params)
|
8
|
-
altool_path
|
9
|
-
unless File.exist?
|
8
|
+
altool_path = "/Applications/Xcode.app/Contents/Applications/Application\ Loader.app/Contents/Frameworks/ITunesSoftwareService.framework/Support/altool"
|
9
|
+
unless File.exist? altool_path
|
10
10
|
UI.user_error!("altool binary not found. Please check your Xcode installtion")
|
11
11
|
end
|
12
12
|
|