Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
fix dropped value
Browse files Browse the repository at this point in the history
  • Loading branch information
caesay committed Dec 26, 2023
1 parent a3a8e31 commit 6e28389
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Rust/src/shared/util_osx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ pub fn start_package<P: AsRef<Path>>(_app: &Manifest, root_dir: P, exe_args: Opt
args.push("--args");
args.extend(a);
}
let mut psi = Process::new("/usr/bin/open").args(args);
let mut psi = Process::new("/usr/bin/open");
psi.args(args);
if let Some(env) = set_env {
psi.env(env, "true");
}
Expand Down

0 comments on commit 6e28389

Please sign in to comment.