install: fixed bad indentation for local install line, causes an error not finding expected files
This commit is contained in:
parent
785cf82ba3
commit
59f814eac0
1 changed files with 1 additions and 1 deletions
2
tasks.py
2
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):
|
||||
|
|
Loading…
Reference in a new issue