mirror of
https://github.com/denisidoro/navi
synced 2024-11-13 23:37:10 +00:00
Fix error message when spawning bash in func.
This commit is contained in:
parent
a209dd94ca
commit
77d0de839e
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ pub fn main(func: String, args: Vec<String>) -> Result<(), Error> {
|
|||
.arg("-c")
|
||||
.arg(cmd.as_str())
|
||||
.spawn()
|
||||
.context("Failed to spawn bash instance")?;
|
||||
.context("Failed to execute bash")?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue