diff options
| author | Melody Horn <melody@boringcactus.com> | 2021-04-03 23:14:34 -0600 | 
|---|---|---|
| committer | Melody Horn <melody@boringcactus.com> | 2021-04-03 23:14:34 -0600 | 
| commit | 91250ecfa75ea754f54aae6d8a52cd8ce9724e0c (patch) | |
| tree | 70b410d53d3020d06bb15e5017ee54def4c29205 /src/makefile/functions.rs | |
| parent | fd884b7f2402bb3a31f72af9cd8309772f7f9947 (diff) | |
| download | makers-91250ecfa75ea754f54aae6d8a52cd8ce9724e0c.tar.gz makers-91250ecfa75ea754f54aae6d8a52cd8ce9724e0c.zip | |
fine, rustc, here's your fuckin underscore
Diffstat (limited to 'src/makefile/functions.rs')
| -rw-r--r-- | src/makefile/functions.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/makefile/functions.rs b/src/makefile/functions.rs index f35708b..d746d8a 100644 --- a/src/makefile/functions.rs +++ b/src/makefile/functions.rs @@ -301,7 +301,7 @@ pub fn shell(macros: &MacroSet, command: &TokenString) -> Result<String> {          .args(args)          .stderr(Stdio::inherit())          .output()?; -    let status = result.status; +    let _status = result.status;      // TODO set .SHELLSTATUS      Ok(String::from_utf8(result.stdout)?          .replace("\r\n", "\n") |