diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-06-09 20:45:02 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-06-09 20:45:02 +0100 |
commit | c76a29a71d16e9ed512a22945d6e6b77b0d21fb6 (patch) | |
tree | c169e25c9d0fb66f4b6d7aa2c9d1d5950fc49f6c /src/backend/uninstall.py | |
parent | bab41785dd6af2ecc88078dd22550b483e7fc776 (diff) |
sisyphus-cli : plug more functions : install, uninstall, forceuninstall, update, upgrade, rescue, spmsync, autoremove - all work
Diffstat (limited to 'src/backend/uninstall.py')
-rw-r--r-- | src/backend/uninstall.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/uninstall.py b/src/backend/uninstall.py index 8dc9e34..1ceb0ba 100644 --- a/src/backend/uninstall.py +++ b/src/backend/uninstall.py @@ -4,8 +4,8 @@ import subprocess import sisyphus.check import sisyphus.sync -def start(pkgList): +def start(pkgname): sisyphus.check.root() - portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'] + pkgList) + portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'] + list(pkgname)) portageExec.wait() sisyphus.database.syncLocal() |