From 46b41536888fa22002b7919dc5959b0e0dc2fdb2 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Mon, 31 Dec 2018 13:19:45 +0100 Subject: [PATCH] bugfix in sysexec_chroot_noerr, path not passed along --- source/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.43.0