Skip to content

Commit

Permalink
Merge pull request #1405 from adrianschroeter/fix
Browse files Browse the repository at this point in the history
fix crash when settings like realname are not set.
  • Loading branch information
dmach authored Sep 13, 2023
2 parents a5f56b1 + 2e8fa9e commit 0417ddf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion osc/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 0417ddf

Please sign in to comment.