diff --git a/tasks.py b/tasks.py index d8e55fec..cf24263f 100644 --- a/tasks.py +++ b/tasks.py @@ -214,7 +214,7 @@ def install_poetry(c: Context, dev: bool, local: bool, hide: bool) -> None: if local: with c.cd(DAEMON_DIR): c.run("poetry build -f wheel", hide=hide) - c.run(f"sudo {python_bin} -m pip install dist/*") + c.run(f"sudo {python_bin} -m pip install dist/*") else: args = "" if dev else "--only main" with c.cd(DAEMON_DIR):