Skip to content

Commit 1abd16f

Browse files
authored
Fix quote issue for docker run command
1 parent 3b376da commit 1abd16f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ectf_tools/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ async def tools(
7777
tool_dir = str(design.resolve() / tools_in)
7878
output = await run_shell(
7979
"docker run"
80-
f" -v {tool_dir}:/tools_in:ro"
80+
f' -v "{tool_dir}":/tools_in:ro'
8181
f" -v {image}.{name}.tools.vol:/tools_out"
8282
" --workdir=/tools_in"
8383
f" {tag} make TOOLS_OUT_DIR=/tools_out"

0 commit comments

Comments
 (0)