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 e5b120d commit fc65c3cCopy full SHA for fc65c3c
Plugins/AWSLambdaPackager/PluginUtils.swift
@@ -27,7 +27,7 @@ struct Utils {
27
logLevel: ProcessLogLevel
28
) throws -> String {
29
if logLevel >= .debug {
30
- print("\(executable.description) \(arguments.joined(separator: " "))")
+ print("\(executable.path()) \(arguments.joined(separator: " "))")
31
}
32
33
let fd = dup(1)
@@ -83,7 +83,7 @@ struct Utils {
83
let process = Process()
84
process.standardOutput = pipe
85
process.standardError = pipe
86
- process.executableURL = URL(fileURLWithPath: executable.description)
+ process.executableURL = executable
87
process.arguments = arguments
88
if let workingDirectory = customWorkingDirectory {
89
process.currentDirectoryURL = URL(fileURLWithPath: workingDirectory.path())
0 commit comments