Add MainActor on AnalysticsManager shared property #24

Merged
l.perret merged 6 commits from fix/Manager_MainActor into master 2026-01-05 14:31:39 +01:00
2 changed files with 20 additions and 18 deletions
Showing only changes of commit d4bc8b154b - Show all commits

View File

@@ -16,12 +16,14 @@ struct GenerateOptions: ParsableArguments {
@Argument(help: "Configuration file.", transform: { $0.replaceTiltWithHomeDirectoryPath() })
var configurationFile: String
@Option(help: "Project directory. It will be added to every relative path (path that does not start with `/`",
transform: {
if $0.last == "/" {
return $0
@Option(
help: "Project directory. It will be added to every relative path (path that does not start with `/`",
transform: {
if $0.last == "/" {
return $0
}
return $0 + "/"
}
return $0 + "/"
})
)
var projectDirectory: String
}