Skip to content

Commit

Permalink
feat(uhyve): change mountpoint env var
Browse files Browse the repository at this point in the history
  • Loading branch information
n0toose committed Nov 27, 2024
1 parent 0f296c6 commit 48d0692
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fs/uhyve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ impl VfsNode for UhyveDirectory {
pub(crate) fn init() {
info!("Try to initialize uhyve filesystem");
if is_uhyve() {
let mount_point = hermit_var_or!("UHYVE_MOUNT", "/root").to_string();
let mount_point = hermit_var_or!("UHYVE_MOUNTPOINT", "/root").to_string();
info!("Mounting uhyve filesystem at {}", mount_point);
fs::FILESYSTEM
.get()
Expand Down

0 comments on commit 48d0692

Please sign in to comment.