diff options
author | Melody Horn <melody@boringcactus.com> | 2024-11-10 21:20:34 -0700 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2024-11-10 21:20:34 -0700 |
commit | fca10b517b448b4023ad8c3225e59dcefd4004e4 (patch) | |
tree | 7507e959d1f690044945dd6fcf34b5fef3385b14 /src/makefile/command_line.rs | |
parent | f945ff33f9312a534ae52f1c763b4150ae41dcf6 (diff) | |
download | makers-fca10b517b448b4023ad8c3225e59dcefd4004e4.tar.gz makers-fca10b517b448b4023ad8c3225e59dcefd4004e4.zip |
overhaul eval architecture
Diffstat (limited to 'src/makefile/command_line.rs')
-rw-r--r-- | src/makefile/command_line.rs | 2 |
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()?) } |