Index: src/main.rs
--- src/main.rs.orig
+++ src/main.rs
@@ -33,8 +33,7 @@ use std::{path::PathBuf, str::FromStr, sync::Arc};
 
 /// Get the directory where the Nushell executable is located.
 fn current_exe_directory() -> PathBuf {
-    let mut path = std::env::current_exe().expect("current_exe() should succeed");
-    path.pop();
+    let mut path = PathBuf::from("${PREFIX}");
     path
 }
 
