fastlane_core 0.22.2 → 0.22.3

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: 1015e9d7da7fdb6497262924af9b32576455a233
4
- data.tar.gz: b052b99533a56b29b53bc6bb41659885bcf7dd8a
3
+ metadata.gz: 441b4caf9f43629b1c8a325b968fd290654303c1
4
+ data.tar.gz: 811a5548a267f59c435fd709674aa64565b21d66
5
5
  SHA512:
6
- metadata.gz: 4f96356e06450baffee0cad189a19954a0560b702c58b5d601e5e634d126ab55a004611ba4ff5f5ddbd92d28a5ffac74065553472d2a60a91f1b24bd10c41350
7
- data.tar.gz: 145c627ac8e67a064d816430e4092eaed1f4273ede62c3b9a7c58ed5091455be569ad718ddd623c5510128751eb734b4abf1bb9ba0f9ea5316f5a4e66fbfb2af
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
- system("clear")
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
- system("clear")
41
+ clear_display
42
42
  puts line
43
43
  end
44
44
  Process.wait(pid)
45
- system("clear")
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
@@ -1,3 +1,3 @@
1
1
  module FastlaneCore
2
- VERSION = "0.22.2"
2
+ VERSION = "0.22.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.22.2
4
+ version: 0.22.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause