From a3432a7a2ffbceea783fdf20231a22ce0ad2302c Mon Sep 17 00:00:00 2001 From: Jonas Maier <> Date: Thu, 5 Mar 2026 09:42:23 +0100 Subject: pipes :) --- src/parse.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/parse.rs') diff --git a/src/parse.rs b/src/parse.rs index efe3b33..39ede4b 100644 --- a/src/parse.rs +++ b/src/parse.rs @@ -17,7 +17,7 @@ pub struct Pipes { #[derive(Debug)] pub struct Command { - pub path: Vec, + pub cmd: Vec, pub args: Vec>, } @@ -119,7 +119,7 @@ impl Parse for Command { Err(e) => Err(e)?, } } - Ok(Self { path, args }) + Ok(Self { cmd: path, args }) } } -- cgit v1.2.3