We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fdeebc commit 2cfcd0dCopy full SHA for 2cfcd0d
src/run/runner/wall_time/executor.rs
@@ -51,7 +51,9 @@ impl Executor for WallTimeExecutor {
51
run_data: &RunData,
52
_mongo_tracer: &Option<MongoTracer>,
53
) -> Result<()> {
54
- let mut cmd = Command::new("sh");
+ // IMPORTANT: Don't use `sh` here! We will use this pid to send signals to the
55
+ // spawned child process which won't work if we use a different shell.
56
+ let mut cmd = Command::new("bash");
57
58
cmd.envs(get_base_injected_env(
59
RunnerMode::Walltime,
0 commit comments