install: fixed hiding output for uninstalling local core
This commit is contained in:
parent
06e9a04357
commit
6e059c7446
1 changed files with 1 additions and 1 deletions
2
tasks.py
2
tasks.py
|
@ -418,7 +418,7 @@ def uninstall(c, dev=False, verbose=False, local=False, prefix=DEFAULT_PREFIX):
|
||||||
|
|
||||||
if local:
|
if local:
|
||||||
with p.start("uninstalling core"):
|
with p.start("uninstalling core"):
|
||||||
c.run("sudo python3 -m pip uninstall -y core")
|
c.run("sudo python3 -m pip uninstall -y core", hide=hide)
|
||||||
else:
|
else:
|
||||||
python = get_python(c, warn=True)
|
python = get_python(c, warn=True)
|
||||||
if python:
|
if python:
|
||||||
|
|
Loading…
Reference in a new issue