Skip to content

Commit

Permalink
Fix quotation
Browse files Browse the repository at this point in the history
  • Loading branch information
victorcolombo committed Jun 19, 2023
1 parent 784e4f6 commit 5a2d078
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration_test/scripts/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def run_bash_command(self, command, docker=False, container="", env_map=None, ve
envs = ""
if env_map:
for key in env_map:
envs += f'{key}=\'{env_map[key]}\' '
envs += f'{key}="{env_map[key]}" '
full_cmd = f'kurtosis service exec sei-integration-test {container} \'/bin/sh -c "{envs} PATH=/bin:/root/go/bin; {command}"\' | tail -n +2 | head -1'
else:
full_cmd = command
Expand Down

0 comments on commit 5a2d078

Please sign in to comment.