From 9b7f435fe7d21423351778b6f29f6db0eaac7fb7 Mon Sep 17 00:00:00 2001 From: fmessmer Date: Thu, 19 Sep 2024 08:58:10 +0200 Subject: [PATCH] fixup command_env_prefix --- robmuxinator/robmuxinator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/robmuxinator/robmuxinator.py b/robmuxinator/robmuxinator.py index 75aa67f..08afe67 100755 --- a/robmuxinator/robmuxinator.py +++ b/robmuxinator/robmuxinator.py @@ -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"]