From 8381e635ad68970cea92d8674e4ec90d2c9dc931 Mon Sep 17 00:00:00 2001 From: Daniel Tchon Date: Mon, 24 Jun 2024 17:41:32 -0700 Subject: [PATCH] Submit `cctbx.xfel` jobs using "/bin/bash" instead of "/bin/sh" Co-authored-by: Aaron Brewster --- xfel/util/mp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xfel/util/mp.py b/xfel/util/mp.py index 4e2a10e23f..5ef550e962 100644 --- a/xfel/util/mp.py +++ b/xfel/util/mp.py @@ -174,7 +174,7 @@ def __init__(self, command, submit_path, stdoutdir, params, @param err_name Filename for stderr (if None, combined with the stdout). @param job_name For applicable queueing systems, identifier for the job (optional). """ - self.shell_path = "/bin/sh" + self.shell_path = "/bin/bash" self.source_env_scripts = [] self.options_inside_submit_script = [] self.submit_head = "qsub"