feat: reverse
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2024-02-03 20:06:17 +01:00
parent 8f889663b2
commit 3a09c68378
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912

View File

@ -31,7 +31,7 @@ impl ShellAction {
let mut process = Command::new(&path)
.current_dir(current_dir)
.envs(variables.iter().map(|v| {
.envs(variables.iter().rev().map(|v| {
log::trace!("{:?}", v);
(v.name.to_uppercase(), v.value.clone())