bugfix in sysexec_chroot_noerr, path not passed along
[bootmanager.git] / source / utils.py
index 8f8b0bd..76d2d47 100644 (file)
@@ -213,7 +213,7 @@ def sysexec_chroot_noerr(path, cmd, log=None, shell=False):
     """
     try:
         rc = 0
-        rc = sysexec_chroot(cmd, log, shell=shell)
+        rc = sysexec_chroot(path, cmd, log, shell=shell)
     except BootManagerException as e:
         pass