From f93484c25ea9ccbd5aafbfac7780af9e252d7b0e Mon Sep 17 00:00:00 2001 From: Miguel Andres-Martinez Date: Mon, 22 Mar 2021 15:47:53 +0100 Subject: [PATCH] bug introduced in the previous merge fixed (solves #39) --- esm_master/task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esm_master/task.py b/esm_master/task.py index 1ffbf62..aeca20a 100644 --- a/esm_master/task.py +++ b/esm_master/task.py @@ -471,7 +471,7 @@ def execute(self): else: subprocess.run( command_spl, - check= not ignore_errors, + check=True, shell=(command.startswith("./") and command.endswith(".sh")), )