1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-26 01:46:13 +01:00

Merge pull request #1405 from adrianschroeter/fix

fix crash when settings like realname are not set.
This commit is contained in:
Daniel Mach 2023-09-13 14:27:00 +02:00 committed by GitHub
commit 0417ddf952
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8913,7 +8913,8 @@ def vc_export_env(apiurl: str, quiet=False):
for (tag, val) in tag2val.items():
for env in tag2envs[tag]:
os.environ[env] = val
if val:
os.environ[env] = val
class MultibuildFlavorResolver: