summaryrefslogtreecommitdiffstats
path: root/src/runner/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/runner/mod.rs')
-rw-r--r--src/runner/mod.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/runner/mod.rs b/src/runner/mod.rs
index 98894b3..63af51b 100644
--- a/src/runner/mod.rs
+++ b/src/runner/mod.rs
@@ -158,7 +158,11 @@ async fn run_commands(
*should = !list.is_empty();
if *should {
let val = list.remove(0);
+ // XXX i really need to just pick one location and
+ // stick with it instead of trying to keep these
+ // in sync
env.set_var(var, &val);
+ std::env::set_var(var, &val);
}
} else {
unreachable!();