From 996cdfe3c19d6c4147fd4e2bfcf9d0fdbcd6f0b2 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 9 May 2010 16:49:49 +0200 Subject: [PATCH] [molecule.specs.plugins.remaster] fix wrong arguments in _exec_inner_script call --- molecule/specs/plugins/remaster.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/molecule/specs/plugins/remaster.py b/molecule/specs/plugins/remaster.py index a84222f..3f59049 100644 --- a/molecule/specs/plugins/remaster.py +++ b/molecule/specs/plugins/remaster.py @@ -261,7 +261,7 @@ class ChrootHandler(BuiltinChrootHandler): if exec_script: if os.path.isfile(exec_script[0]) and \ os.access(exec_script[0], os.R_OK): - rc = self._exec_inner_script(exec_script) + rc = self._exec_inner_script(exec_script, self.source_dir) if rc != 0: return rc