From 45ed026fdd7f7d33ca005ee0db43d70c4f005e45 Mon Sep 17 00:00:00 2001 From: MartinFillon Date: Tue, 30 Apr 2024 09:10:02 +0200 Subject: [PATCH] feat: add an eol and eof The reason of this change is due to [posix definition of a line](https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206) --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 0a31aee..c336c8b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -83,7 +83,7 @@ fn main() -> std::io::Result<()> { .iter() .map(|subset| { format!( - "bin.name = \"{}\"\nargs = \"{} {}\"", + "bin.name = \"{}\"\nargs = \"{} {}\"\n", &config.binary.as_ref().unwrap(), &config.args.as_ref().unwrap(), subset.join(" ")