File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ import Foundation
22
33import Logging
44
5- import ProcessInvocationBridge
6-
75
86
97public enum ProcessInvocationConstants {
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ private let processInvocationBridgeName = "swift-process-invocation-bridge"
2222@main
2323struct ProcessInvocationBridge : ParsableCommand {
2424
25- static var configuration = CommandConfiguration (
25+ static let configuration = CommandConfiguration (
2626 commandName: processInvocationBridgeName,
2727 abstract: " Internal launcher for swift-process-invocation which receives a fd before launching the tool. "
2828 )
@@ -40,7 +40,7 @@ struct ProcessInvocationBridge : ParsableCommand {
4040 @Argument ( parsing: . captureForPassthrough)
4141 var toolArguments : [ String ] = [ ]
4242
43- static var logger : Logger = {
43+ static let logger : Logger = {
4444 var ret = Logger ( label: " main " )
4545 ret. logLevel = . debug
4646 return ret
You can’t perform that action at this time.
0 commit comments