Skip to content

Commit

Permalink
Fix quote issue for docker run command
Browse files Browse the repository at this point in the history
  • Loading branch information
enfreck authored Jan 22, 2023
1 parent 3b376da commit 1abd16f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ectf_tools/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ async def tools(
tool_dir = str(design.resolve() / tools_in)
output = await run_shell(
"docker run"
f" -v {tool_dir}:/tools_in:ro"
f' -v "{tool_dir}":/tools_in:ro'
f" -v {image}.{name}.tools.vol:/tools_out"
" --workdir=/tools_in"
f" {tag} make TOOLS_OUT_DIR=/tools_out"
Expand Down

0 comments on commit 1abd16f

Please sign in to comment.