fastlane_core 0.22.2 → 0.22.3
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/lib/fastlane_core/command_executor.rb +7 -3
- 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: 441b4caf9f43629b1c8a325b968fd290654303c1
|
|
4
|
+
data.tar.gz: 811a5548a267f59c435fd709674aa64565b21d66
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f51d80154a0f1c7c0849c7ed7d1086634b432ce648cddc42aad15b25b27e32f3399ffb431398ea5c0e836010c4083c956046765eb720d32e018ed3a709fe231f
|
|
7
|
+
data.tar.gz: fec59c1f7475c054b1209bef3d4f9f72347baa2186740b69d180e3f4292a38d31d7d941c39059a356fe847eb9ac339dc3355753b776d02f5745a09b2a3254d06
|
|
@@ -18,7 +18,7 @@ module FastlaneCore
|
|
|
18
18
|
Helper.log.info command.yellow.strip if print_command
|
|
19
19
|
|
|
20
20
|
if print_all and loading # this is only used to show the "Loading text"...
|
|
21
|
-
|
|
21
|
+
clear_display
|
|
22
22
|
puts loading.cyan
|
|
23
23
|
end
|
|
24
24
|
|
|
@@ -38,11 +38,11 @@ module FastlaneCore
|
|
|
38
38
|
end
|
|
39
39
|
|
|
40
40
|
# The actual output here, first clear and then print out 3 lines
|
|
41
|
-
|
|
41
|
+
clear_display
|
|
42
42
|
puts line
|
|
43
43
|
end
|
|
44
44
|
Process.wait(pid)
|
|
45
|
-
|
|
45
|
+
clear_display
|
|
46
46
|
end
|
|
47
47
|
rescue => ex
|
|
48
48
|
# This could happen when the environment is wrong:
|
|
@@ -64,6 +64,10 @@ module FastlaneCore
|
|
|
64
64
|
|
|
65
65
|
return output.join("\n")
|
|
66
66
|
end
|
|
67
|
+
|
|
68
|
+
def clear_display
|
|
69
|
+
system("clear") unless Helper.ci?
|
|
70
|
+
end
|
|
67
71
|
end
|
|
68
72
|
end
|
|
69
73
|
end
|