mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-09 18:52:16 +03:00
gdebi yerine dpkg ile paket yuklenilmesi saglandi
This commit is contained in:
parent
f81c8e1953
commit
3e9c690302
1 changed files with 9 additions and 5 deletions
|
@ -224,8 +224,12 @@ class Util:
|
|||
|
||||
@staticmethod
|
||||
def install_with_gdebi(full_path):
|
||||
command_dpkg = 'dpkg -i {0}'
|
||||
command_dep = 'apt -f install -y'
|
||||
commands = [command_dpkg.format(full_path),command_dep]
|
||||
for cmd in commands:
|
||||
try:
|
||||
process = subprocess.Popen('gdebi -n ' + full_path, shell=True)
|
||||
process = subprocess.Popen(cmd, shell=True)
|
||||
process.wait()
|
||||
except:
|
||||
raise
|
||||
|
|
Loading…
Reference in a new issue