fastlane/swift/MainProcess.swift in fastlane_hotfix-2.165.1 vs fastlane/swift/MainProcess.swift in fastlane_hotfix-2.187.0
- old
+ new
@@ -1,7 +1,7 @@
// MainProcess.swift
-// Copyright (c) 2020 FastlaneTools
+// Copyright (c) 2021 FastlaneTools
//
// ** NOTE **
// This file is provided by fastlane and WILL be overwritten in future updates
// If you want to add extra functionality to this project, create a new file in a
@@ -54,9 +54,11 @@
rubySocketCommand.stderror.onStringOutput { print($0) }
rubySocketCommand.stdout.onStringOutput { stdout in
print(stdout)
self.timeBetweenPrints = Int(self.lastPrintDate.timeIntervalSinceNow)
}
+
+ // swiftformat:disable:next redundantSelf
_ = Runner.waitWithPolling(self.timeBetweenPrints, toEventually: { $0 > 5 }, timeout: 10)
thread.start()
#endif
}
}