chore: Fix lcippy warning

This commit is contained in:
Lucas Schwiderski 2023-03-28 20:49:15 +02:00
parent 18797c4d2a
commit 11c4eddaa4
Signed by: lucas
GPG key ID: AA12679AAA6DF4D8

View file

@ -86,7 +86,7 @@ const LUAJIT_SRC: [&str; 69] = [
fn build_gcc(src_dir: &str) {
let mut buildcmd = Command::new("make");
buildcmd.current_dir(&src_dir);
buildcmd.current_dir(src_dir);
buildcmd.stderr(Stdio::inherit());
buildcmd.arg("--no-silent");