Remove unnecessary configuration

This commit is contained in:
Felix Schütt
2022-11-16 13:55:06 +01:00
parent e97118a71c
commit 6375a8d19b
4 changed files with 5 additions and 7 deletions

View File

@@ -1615,8 +1615,7 @@ fn find_zig_binary(path: Option<PathBuf>) -> Result<PathBuf> {
break;
}
}
retval
.ok_or_else(|| anyhow!("Could not find `zig` binary in PATH."))?
retval.ok_or_else(|| anyhow!("Could not find `zig` binary in PATH."))?
};
let version = std::process::Command::new(&retval)