Skip to content

Commit 9a65f08

Browse files
committed
task.launch() -> task.run()
1 parent ab64449 commit 9a65f08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Scripts/build.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ func execute(commandPath: String, arguments: [String]) throws {
99
task.launchPath = commandPath
1010
task.arguments = arguments
1111
print("Launching command: \(commandPath) \(arguments.joined(separator: " "))")
12-
task.launch()
12+
try task.run()
1313
task.waitUntilExit()
1414
guard task.terminationStatus == 0 else {
1515
throw TaskError.code(task.terminationStatus)

0 commit comments

Comments
 (0)