summaryrefslogtreecommitdiffstats
path: root/src/shell/history/entry.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2022-03-08 02:37:38 -0500
committerJesse Luehrs <doy@tozt.net>2022-03-08 02:37:38 -0500
commit1abb97cca69e0b513f7499cc7db03ba622b38711 (patch)
tree6e59e0e7e4bfe9b00c735feb40c2286b3e0955c7 /src/shell/history/entry.rs
parentd66f4773bccaee61c1c998640dcdb048223f8900 (diff)
downloadnbsh-1abb97cca69e0b513f7499cc7db03ba622b38711.tar.gz
nbsh-1abb97cca69e0b513f7499cc7db03ba622b38711.zip
use /proc/self/exe directly when re-execing ourself when possible
this will use the same binary that is currently running, even if it has been deleted or replaced
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) =