From 080af10a947d1671758b4f1bb2aa0574358ad07b Mon Sep 17 00:00:00 2001 From: Mirko Brombin Date: Sun, 9 Oct 2022 19:24:01 +0200 Subject: [PATCH] processor: Fix typo causing pre/post run not being executed --- vanilla_first_setup/utils/processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vanilla_first_setup/utils/processor.py b/vanilla_first_setup/utils/processor.py index 6749bad..861ea57 100644 --- a/vanilla_first_setup/utils/processor.py +++ b/vanilla_first_setup/utils/processor.py @@ -27,7 +27,7 @@ class Processor: @staticmethod def run(log_path, pre_run, post_run, commands): - command = pre_run + commands + post_run + commands = pre_run + commands + post_run logger.info("processing the following commands: \n%s" % '\n'.join(commands))