We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a65f08 commit 2985121Copy full SHA for 2985121
Scripts/build.swift
@@ -6,7 +6,7 @@ import Foundation
6
7
func execute(commandPath: String, arguments: [String]) throws {
8
let task = Process()
9
- task.launchPath = commandPath
+ task.executableURL = .init(filePath: commandPath)
10
task.arguments = arguments
11
print("Launching command: \(commandPath) \(arguments.joined(separator: " "))")
12
try task.run()
0 commit comments