From f94a247d0f782c526a9a0d59900dc7a7900031f5 Mon Sep 17 00:00:00 2001 From: Ahurac Date: Thu, 11 Apr 2024 10:01:43 +0200 Subject: [PATCH] parser : suppression ligne en commentaire --- src/parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser.rs b/src/parser.rs index a48dd30..9d586c4 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -6,7 +6,7 @@ pub fn parse_command_line(line: String) -> Option { if !argv.is_empty() { let command = UnixProgram::new(argv); let command_sequence = CommandSequence::new(command); - // command_sequence.add(_command); + Some(command_sequence) } else { None