diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-03-16 14:58:05 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-03-16 14:58:05 +0100 |
| commit | 6b9eb658e920bb023ce08a37c44a123121698703 (patch) | |
| tree | 897cbf577b0e48cd809ece96488f2a1906c053a9 /src | |
| parent | 346393acc47db621e66685ba58c76c2d4048ff45 (diff) | |
Cleanup
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index a5c2cf6..535a2dd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,3 @@ -// mod argument_parser; mod configuration; mod command; mod constants; @@ -26,7 +25,7 @@ fn main() -> Result<()> { match result { Ok(_) => Ok(()), Err(e) => { - eprintln!("Error: {}", e); + eprintln!("{}", e); std::process::exit(1); } } |