Skip to content

Commit

Permalink
Refactor imports
Browse files Browse the repository at this point in the history
  • Loading branch information
triarius committed Sep 13, 2024
1 parent 9bf9295 commit 9a6a65c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use clap::Parser;
use eyre::Result;
use std::path::PathBuf;
use std::{path::PathBuf, process};

/// A command runner that optionally logs the I/O streams to files.
#[derive(Debug, Parser, PartialEq, Eq)]
Expand Down Expand Up @@ -35,7 +35,7 @@ fn main() -> Result<()> {
args.err_file.as_deref(),
)?;

std::process::exit(code);
process::exit(code);
}

#[cfg(test)]
Expand Down

0 comments on commit 9a6a65c

Please sign in to comment.