fastlane_core 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/fastlane_core/developer_center/developer_center_helper.rb +1 -1
- data/lib/fastlane_core/developer_center/developer_center_signing_certificates.rb +1 -1
- data/lib/fastlane_core/itunes_connect/itunes_connect_helper.rb +2 -2
- data/lib/fastlane_core/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b5643cf774b5e1dec8b6daf7aee5b83afc08e3bf
|
4
|
+
data.tar.gz: 0b7c7e644f5fb5ca37d05340fae2898cfcad210d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64596c49f7d9790726d1c666bd7cfe958e4c0d7c1d70d2a73f652885357b5553fdfc8f43e62292b99489106e7828c56484a56bf29244f9f8fbbed025bc0871c5
|
7
|
+
data.tar.gz: a54986ec47a7697ef5b9b445c9c916dcae8ae2bce0b5df2bd23af43e682d9c734a22a5b34e1d9dc9bf3db18c485ff64f446ab0666da3111dfa74ee22ca0fb1a2
|
@@ -39,9 +39,9 @@ module FastlaneCore
|
|
39
39
|
end
|
40
40
|
|
41
41
|
def snap
|
42
|
-
path = "Error#{Time.now.to_i}.png"
|
42
|
+
path = File.expand_path("Error#{Time.now.to_i}.png")
|
43
43
|
save_screenshot(path, :full => true)
|
44
|
-
system("open '#{path}'")
|
44
|
+
system("open '#{path}'") unless ENV['SIGH_DISABLE_OPEN_ERROR']
|
45
45
|
end
|
46
46
|
|
47
47
|
# Since Apple takes for ages, after the upload is properly processed, we have to wait here
|