diff options
Diffstat (limited to 'src/frontend/cli')
-rwxr-xr-x | src/frontend/cli/sisyphus-cli.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/frontend/cli/sisyphus-cli.py b/src/frontend/cli/sisyphus-cli.py index 76a8cb2..6ccf587 100755 --- a/src/frontend/cli/sisyphus-cli.py +++ b/src/frontend/cli/sisyphus-cli.py @@ -217,10 +217,10 @@ def upgrade(ebuild: bool = typer.Option(False, "--ebuild", "-e")): The --ebuild option will preffer to reuse binary packages(if available) to satisfy the dependencies for the ebuild(source) packages, speeding up the upgrade. You can use the --ebuild option even if you don't have any ebuild(source) packages installed; It will fall back to binary packages only. """ - if not ebuild: - sisyphus.upgrade.start() + if ebuild: + sisyphus.upgrade.start(ebuild=True, gfx_ui=False) else: - sisyphus.upgrade.estart() + sisyphus.upgrade.start(ebuild=False, gfx_ui=False) @app.command("spmsync") def spmsync(): |