aboutsummaryrefslogtreecommitdiff
path: root/src/makefile/command_line.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/makefile/command_line.rs')
-rw-r--r--src/makefile/command_line.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefile/command_line.rs b/src/makefile/command_line.rs
index ae6c9e9..c993a10 100644
--- a/src/makefile/command_line.rs
+++ b/src/makefile/command_line.rs
@@ -36,7 +36,7 @@ fn execute_command_line(
let mut command = Command::new(program);
command.args(args);
#[cfg(feature = "full")]
- command.envs(macros.resolve_exports()?);
+ command.envs(macros.resolve_exports::<&[u8]>(None)?);
Ok(command.status()?)
}