summaryrefslogtreecommitdiffstats
path: root/src/history.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/history.rs')
-rw-r--r--src/history.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/history.rs b/src/history.rs
index 50e5ca7..58de34c 100644
--- a/src/history.rs
+++ b/src/history.rs
@@ -19,7 +19,7 @@ impl History {
pub async fn run(&mut self, cmd: &str) -> anyhow::Result<usize> {
let (exe, args) = parse_cmd(cmd);
- let mut process = async_process::Command::new(&exe);
+ let mut process = async_std::process::Command::new(&exe);
process.args(&args);
let child = process
.spawn_pty(Some(&pty_process::Size::new(24, 80)))