~ English default language for schemes

This commit is contained in:
David Bureš 2024-07-28 20:24:58 +02:00
parent f90f474b0e
commit b84e70838e
1 changed files with 4 additions and 2 deletions

View File

@ -67,7 +67,8 @@ let project = Project(
),
runAction: .runAction(
configuration: .release,
executable: "Cork"
executable: "Cork",
options: .options(language: .init(identifier: "en"))
)
),
.scheme(
@ -81,7 +82,8 @@ let project = Project(
environmentVariables: [
"SELF_COMPILED": "true"
]
)
),
options: .options(language: .init(identifier: "en"))
)
)
]