mirror of
https://github.com/vcmi/vcmi.git
synced 2025-11-23 22:37:55 +02:00
8 lines
223 B
Python
8 lines
223 B
Python
dic = {
|
|
"applicationIdSuffix": ".daily",
|
|
"applicationLabel": "VCMI daily",
|
|
"applicationVariant": "daily",
|
|
"signingConfig": "dailySigning",
|
|
}
|
|
print(";".join([f"{key}={value}" for key, value in dic.items()]))
|