summaryrefslogtreecommitdiffstats
path: root/src/shell/history/entry.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/shell/history/entry.rs')
-rw-r--r--src/shell/history/entry.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shell/history/entry.rs b/src/shell/history/entry.rs
index 56f378a..145e0cf 100644
--- a/src/shell/history/entry.rs
+++ b/src/shell/history/entry.rs
@@ -296,7 +296,7 @@ impl Entry {
env: &Env,
pts: &pty_process::Pts,
) -> Result<(tokio::process::Child, std::fs::File)> {
- let mut cmd = pty_process::Command::new(std::env::current_exe()?);
+ let mut cmd = pty_process::Command::new(crate::info::current_exe()?);
cmd.args(&["-c", cmdline, "--status-fd", "3"]);
env.apply(&mut cmd);
let (from_r, from_w) =