summaryrefslogtreecommitdiffstats
path: root/src/pipeline/builtins/command.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2022-01-05 07:01:08 -0500
committerJesse Luehrs <doy@tozt.net>2022-01-05 07:01:08 -0500
commit404ae6202e24c7bfc5625edb3ac064df4ecd105f (patch)
tree1177bdc4c2b4f8d857bf3d5630ee82fd2e4ccdd3 /src/pipeline/builtins/command.rs
parente893d7cb8ca855e2843f60ec0b1045510e1577cf (diff)
downloadnbsh-404ae6202e24c7bfc5625edb3ac064df4ecd105f.tar.gz
nbsh-404ae6202e24c7bfc5625edb3ac064df4ecd105f.zip
shorten some names
Diffstat (limited to 'src/pipeline/builtins/command.rs')
-rw-r--r--src/pipeline/builtins/command.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pipeline/builtins/command.rs b/src/pipeline/builtins/command.rs
index b49b41d..b69463b 100644
--- a/src/pipeline/builtins/command.rs
+++ b/src/pipeline/builtins/command.rs
@@ -41,7 +41,7 @@ impl Command {
self.io.pre_exec(f);
}
- pub fn spawn(self, env: &crate::env::Env) -> anyhow::Result<Child> {
+ pub fn spawn(self, env: &crate::Env) -> anyhow::Result<Child> {
let Self { f, exe, io } = self;
(f)(exe, env, io)
}