Skip to content

Commit 632f858

Browse files
committed
Merge branch 'fix/frizlab/compilation_new_build_system' into develop
2 parents 22bd886 + 03fdacc commit 632f858

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Sources/ProcessInvocation/ Constants.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ import Foundation
22

33
import Logging
44

5-
import ProcessInvocationBridge
6-
75

86

97
public enum ProcessInvocationConstants {

Sources/ProcessInvocationBridge/ProcessInvocationBridge.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ private let processInvocationBridgeName = "swift-process-invocation-bridge"
2222
@main
2323
struct 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

0 commit comments

Comments
 (0)