Skip to content

Commit 39738d5

Browse files
committed
v0.1.6
1 parent fa3162c commit 39738d5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main.rs

+2
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,7 @@ fn main() {
276276
let is_elf = is_elf(&bin_path).unwrap_or(false);
277277
let is_hardlink = is_hardlink(&sharun, &bin_path).unwrap_or(false);
278278
if is_exe && (is_hardlink || !is_elf) {
279+
add_to_env("PATH", bin_dir);
279280
let err = Command::new(&bin_path)
280281
.envs(env::vars())
281282
.args(exec_args)
@@ -338,6 +339,7 @@ fn main() {
338339
}
339340
let app = &format!("{bin_dir}/{appname}");
340341

342+
add_to_env("PATH", bin_dir);
341343
if get_env_var("ARGV0").is_empty() {
342344
env::set_var("ARGV0", &arg0)
343345
}

0 commit comments

Comments
 (0)