From fca10b517b448b4023ad8c3225e59dcefd4004e4 Mon Sep 17 00:00:00 2001 From: Melody Horn Date: Sun, 10 Nov 2024 21:20:34 -0700 Subject: overhaul eval architecture --- src/makefile/command_line.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/makefile/command_line.rs') 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()?) } -- cgit v1.2.3