Skip to content

Commit

Permalink
fixup command_env_prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
fmessmer committed Sep 19, 2024
1 parent db59c48 commit 9b7f435
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion robmuxinator/robmuxinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ def __init__(self, ssh_client, session_name, yaml_session, envs=None) -> None:
command_env_prefix = ""
if self._envs is not None:
for env in self._envs:
command_env_prefix += "export {}='{}' && ".format(env[0], env[1])
command_env_prefix += "export {}={} && ".format(env[0], env[1])

if "command" in yaml_session:
self._command = command_env_prefix + yaml_session["command"]
Expand Down

0 comments on commit 9b7f435

Please sign in to comment.