Skip to content

Commit

Permalink
Double-quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemartinlogan committed Dec 9, 2024
1 parent 7a28397 commit 4c6f8c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jarvis_util/shell/ssh_exec.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def ssh_cmd(self, cmd):
if self.ssh_env is not None:
for key, val in self.ssh_env.items():
cmd_lines.append(f'{key}=\'{val}\'')
cmd_lines.append(f'\"cmd\"')
cmd_lines.append(f'\"{cmd}\"')
env_cmd = ' '.join(cmd_lines)
real_cmd = f'{ssh_cmd} {env_cmd}'
return real_cmd
Expand Down

0 comments on commit 4c6f8c0

Please sign in to comment.