Skip to content

Commit

Permalink
prioritize metadata env over environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesfrye committed Dec 4, 2024
1 parent 9b1bbcf commit 530de4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def deploy(
shlex.split(deploy_command),
cwd=module_with_app.parent,
capture_output=True,
env=(env or {}) | os.environ,
env=os.environ | (env or {}),
)
if r.returncode != 0:
print(
Expand Down

0 comments on commit 530de4f

Please sign in to comment.