Skip to content

Commit 8e57621

Browse files
authored
Fix typo in PATH env var (#756)
Signed-off-by: Ludvig Liljenberg <[email protected]>
1 parent 45bb9fb commit 8e57621

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hyperlight_guest_bin/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ fn find_next(root_dir: &Path, tool_name: &str) -> PathBuf {
204204
if let Some(path) = env::var_os(format!("HYPERLIGHT_GUEST_{tool_name}")) {
205205
return path.into();
206206
}
207-
let path = env::var_os("PATH)").expect("$PATH should exist");
207+
let path = env::var_os("PATH").expect("$PATH should exist");
208208
let paths: Vec<_> = env::split_paths(&path).collect();
209209
for path in &paths {
210210
let abs_path = fs::canonicalize(path);

0 commit comments

Comments
 (0)