mirror of
https://github.com/parchlinux/calamares.git
synced 2025-07-01 03:15:37 -04:00
add missing self
This commit is contained in:
parent
5bb49e252d
commit
ddfd120197
1 changed files with 4 additions and 4 deletions
|
@ -325,19 +325,19 @@ class PMPamac(PackageManager):
|
||||||
self.check_db_lock()
|
self.check_db_lock()
|
||||||
pamac_flags = "install"
|
pamac_flags = "install"
|
||||||
|
|
||||||
check_target_env_call([backend, pamac_flags, "--no-confirm"] + pkgs)
|
check_target_env_call([self.backend, pamac_flags, "--no-confirm"] + pkgs)
|
||||||
|
|
||||||
def remove(self, pkgs):
|
def remove(self, pkgs):
|
||||||
self.check_db_lock()
|
self.check_db_lock()
|
||||||
check_target_env_call([backend, "remove", "--no-confirm"] + pkgs)
|
check_target_env_call([self.backend, "remove", "--no-confirm"] + pkgs)
|
||||||
|
|
||||||
def update_db(self):
|
def update_db(self):
|
||||||
self.check_db_lock()
|
self.check_db_lock()
|
||||||
check_target_env_call([backend, "update", "--no-confirm"])
|
check_target_env_call([self.backend, "update", "--no-confirm"])
|
||||||
|
|
||||||
def update_system(self):
|
def update_system(self):
|
||||||
self.check_db_lock()
|
self.check_db_lock()
|
||||||
check_target_env_call([backend, "upgrade", "--no-confirm"])
|
check_target_env_call([self.backend, "upgrade", "--no-confirm"])
|
||||||
|
|
||||||
|
|
||||||
class PMPortage(PackageManager):
|
class PMPortage(PackageManager):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue