aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/makefile/functions.rs2
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")