Kaydet (Commit) 7f1ae5fa authored tarafından Eray Özkural's avatar Eray Özkural

* use pisi stuff

üst ae39ef20
......@@ -333,7 +333,7 @@ class Install(AtomicOperation):
def update_info(self):
for x in self.files.list:
if x.type == 'info':
os.system('install-info /%s /usr/share/info/dir' % x.path)
pisi.util.run_batch('install-info /%s /usr/share/info/dir' % x.path)
def update_environment(self):
# check if we have any shared objects or anything under
......@@ -484,7 +484,7 @@ class Remove(AtomicOperation):
def update_info(self):
for x in self.files.list:
if x.type == 'info':
os.system('install-info --delete /%s /usr/share/info/dir ' % x.path)
pisi.util.run_batch('install-info --delete /%s /usr/share/info/dir ' % x.path)
def remove_single(package_name):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment