fastlane-plugin-testappio 1.0.4 → 1.0.5
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4a3f8258a28c0ecf61cb6a5c6fb9cb4034bff5661a255107aebe48875538d96c
|
|
4
|
+
data.tar.gz: b410611a5b15eae119663098c1eba864e67295e85cba0d81588f037cf4bd5a94
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28ad0d6bb57af599d7d2caff4d48f4a833ae7d222f7fe639f715d01e5cdce7951d37d420c7017c152a74105611d3b26e9af69a0e2197129ea72e7cf36f3897cc
|
|
7
|
+
data.tar.gz: 7f8dbefec28b28af770b92bed123ecef137cef756e9be97ddc430955e8fd93afa0c67a392d7ee4aadc1b580ee1db40006596e83779fe91401fb2644542e4d6ea
|
|
@@ -43,7 +43,9 @@ module Fastlane
|
|
|
43
43
|
"--git_release_notes=#{git_release_notes}",
|
|
44
44
|
"--git_commit_id=#{git_commit_id}",
|
|
45
45
|
"--notify=#{notify}",
|
|
46
|
-
"--
|
|
46
|
+
"--self_update=#{self_update}",
|
|
47
|
+
"--source=Fastlane",
|
|
48
|
+
"--source_version=#{Fastlane::Testappio::VERSION}"]
|
|
47
49
|
|
|
48
50
|
UI.message("Uploading to TestApp.io")
|
|
49
51
|
Helper::TestappioHelper.call_ta_cli(command)
|
|
@@ -102,7 +102,11 @@ module Fastlane
|
|
|
102
102
|
Open3.popen3(final_command) do |stdin, stdout, stderr, wait_thr|
|
|
103
103
|
while (line = stdout.gets)
|
|
104
104
|
out << line
|
|
105
|
-
|
|
105
|
+
line.strip!
|
|
106
|
+
|
|
107
|
+
# Print output as it's generated
|
|
108
|
+
UI.message(line) unless line.empty?
|
|
109
|
+
|
|
106
110
|
end
|
|
107
111
|
while (line = stderr.gets)
|
|
108
112
|
error << line.strip!
|