Skip to content

Commit 0b4bc8c

Browse files
committed
Fix docker bootstrap script.
1 parent 5833660 commit 0b4bc8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/bootstrap_docker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def main() -> int:
3030

3131
print("Using config.toml path in container:", config_toml, flush=True)
3232

33-
os.execlp(python, python, "main.py" "-w", str(worker_count))
33+
os.execlp(python, python, "main.py", "-w", str(worker_count))
3434

3535
# In case os.exec* fails, this is executed
3636
return 1

0 commit comments

Comments
 (0)