We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45bb9fb commit 8e57621Copy full SHA for 8e57621
src/hyperlight_guest_bin/build.rs
@@ -204,7 +204,7 @@ fn find_next(root_dir: &Path, tool_name: &str) -> PathBuf {
204
if let Some(path) = env::var_os(format!("HYPERLIGHT_GUEST_{tool_name}")) {
205
return path.into();
206
}
207
- let path = env::var_os("PATH)").expect("$PATH should exist");
+ let path = env::var_os("PATH").expect("$PATH should exist");
208
let paths: Vec<_> = env::split_paths(&path).collect();
209
for path in &paths {
210
let abs_path = fs::canonicalize(path);
0 commit comments