summaryrefslogtreecommitdiffstats
path: root/crates/runner/src
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2021-10-28 23:13:21 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2021-10-28 23:28:04 +0200
commit79c9ed185253574327b39b21265750f07ecb39b0 (patch)
treed58b77e8896da78c2a0f0eb4cc4585bf44650bae /crates/runner/src
parent1a988dd15362844b1fb112708d2b7bdd9d8ea653 (diff)
downloadrebel-79c9ed185253574327b39b21265750f07ecb39b0.tar
rebel-79c9ed185253574327b39b21265750f07ecb39b0.zip
Move handling of current directory of task to driver
Diffstat (limited to 'crates/runner/src')
-rw-r--r--crates/runner/src/task.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/runner/src/task.rs b/crates/runner/src/task.rs
index fd640ad..f203c2c 100644
--- a/crates/runner/src/task.rs
+++ b/crates/runner/src/task.rs
@@ -308,7 +308,6 @@ fn run_task(input_hash: &InputHash, task: &Task, jobserver: &mut Jobserver) -> R
.stdin(Stdio::null())
.stdout(log_stdout)
.stderr(log_stderr)
- .current_dir(paths::TASK_WORKDIR)
.env_clear()
.env("PATH", "/usr/sbin:/usr/bin:/sbin:/bin")
.env("HOME", "/build")