Fix d'une inversion de property dans la génération des strings
All checks were successful
gitea-openium/resgen.swift/pipeline/head This commit looks good

This commit is contained in:
2025-08-26 08:50:45 +02:00
parent 2ae06867c7
commit ddf1d2509f
2 changed files with 2 additions and 3 deletions

View File

@@ -38,8 +38,8 @@ extension StringsConfiguration: Runnable {
("--extension-suffix", extensionSuffix),
("--visibility", visibility),
("--asset-bundle", assetBundle),
("--xc-strings", staticMembers?.description),
("--static-members", xcStrings?.description)
("--xc-strings", xcStrings?.description),
("--static-members", staticMembers?.description)
].forEach { argumentName, argumentValue in
if let argumentValue {
args += [

View File

@@ -219,7 +219,6 @@ enum StringsFileGenerator {
)
)
)
print("VALUE: \(value)")
localizationTab.append(localization)
}
}