Renaming errors property: localizedDescription -> description
Some checks failed
gitea-openium/resgen.swift/pipeline/head There was a failure building this commit

Re enabling generation of ressources on commond
Architecture will now generate property of subobject as non-static. It will allow usage like R.sub_object.sub_property.property
This commit is contained in:
2022-11-22 17:37:24 +01:00
parent fc427733ee
commit 9ab7e74991
7 changed files with 18 additions and 18 deletions

View File

@ -45,14 +45,14 @@ struct Generate: ParsableCommand {
ArchitectureGenerator.writeArchitecture(architecture)
}
// // Execute commands
// configuration.runnableConfigurations
// .forEach {
// let begin = Date()
// $0.run(projectDirectory: options.projectDirectory,
// force: options.forceGeneration)
// print("Took: \(Date().timeIntervalSince(begin))s\n")
// }
// Execute commands
configuration.runnableConfigurations
.forEach {
let begin = Date()
$0.run(projectDirectory: options.projectDirectory,
force: options.forceGeneration)
print("Took: \(Date().timeIntervalSince(begin))s\n")
}
print("[\(Self.toolName)] Resgen ended")
}