From: Thierry Parmentelat Date: Mon, 31 Dec 2018 12:19:45 +0000 (+0100) Subject: bugfix in sysexec_chroot_noerr, path not passed along X-Git-Tag: bootmanager-6.0-0~2 X-Git-Url: http://git.onelab.eu/?p=bootmanager.git;a=commitdiff_plain;h=46b41536888fa22002b7919dc5959b0e0dc2fdb2 bugfix in sysexec_chroot_noerr, path not passed along --- diff --git a/source/utils.py b/source/utils.py index 8f8b0bd..76d2d47 100644 --- a/source/utils.py +++ b/source/utils.py @@ -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