summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2022-01-11 00:48:50 -0500
committerJesse Luehrs <doy@tozt.net>2022-01-11 00:48:50 -0500
commit798b412537fd2e93e86c2c305be9405b79d2dcb4 (patch)
treea329d59d22a67b8fa793c545812ccd81af081a28
parent4086fc1f83673554f9b9695e853c44dd895add23 (diff)
downloadnbsh-798b412537fd2e93e86c2c305be9405b79d2dcb4.tar.gz
nbsh-798b412537fd2e93e86c2c305be9405b79d2dcb4.zip
clippy
-rw-r--r--src/runner/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runner/mod.rs b/src/runner/mod.rs
index 3e32498..111367d 100644
--- a/src/runner/mod.rs
+++ b/src/runner/mod.rs
@@ -196,7 +196,7 @@ async fn run_pipeline(
env: &mut Env,
shell_write: &async_std::fs::File,
) -> anyhow::Result<()> {
- write_event(&shell_write, Event::RunPipeline(env.idx(), pipeline.span()))
+ write_event(shell_write, Event::RunPipeline(env.idx(), pipeline.span()))
.await?;
// Safety: pipelines are run serially, so only one copy of these will ever
// exist at once. note that reusing a single copy of these at the top