internal func makeCartonFrontendProcess(context: PluginContext, arguments: [String]) throws -> Process { let frontend = try context.tool(named: "carton-frontend") Diagnostics.remark( "Running " + ([frontend.path.string] + arguments).map { "\"\($0)\"" }.joined(separator: " ")) let process = Process() process.executableURL = URL(fileURLWithPath: frontend.path.string) process.arguments = arguments return process }
Diagnostics.remark
で出してるようだから、driverが-v
をつけないから出てこない (edited)