From 59f814eac0453d9546863ff440386a6e4911f86a Mon Sep 17 00:00:00 2001 From: Blake Harnden <32446120+bharnden@users.noreply.github.com> Date: Thu, 9 Mar 2023 10:49:11 -0800 Subject: [PATCH] install: fixed bad indentation for local install line, causes an error not finding expected files --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):