Skip to content

Commit

Permalink
[Fastlane.Swift] Swift fastlane does not run on Apple Silicon fastlan…
Browse files Browse the repository at this point in the history
…e#18502

* [Swift] Fix CI detected error
  • Loading branch information
kikeenrique committed Dec 2, 2021
1 parent 3f1b1bc commit d795f2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastlane/swift/MainProcess.swift
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public class Main {
public func run(with fastFile: LaneFile?) {
process.startFastlaneThread(with: fastFile)

while !process.doneRunningLane, RunLoop.current.run(mode: .default, before: Date(timeIntervalSinceNow: 2)) {
while !process.doneRunningLane, RunLoop.current.run(mode: RunLoopMode.defaultRunLoopMode, before: Date(timeIntervalSinceNow: 2)) {
// no op
}
}
Expand Down

0 comments on commit d795f2e

Please sign in to comment.