Skip to content

Commit

Permalink
Just added one second more runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
Stridsvagn69420 committed Jun 25, 2023
1 parent 7252c10 commit 13a3ac7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ exclude = [
]

[dependencies]
blake3 = { version = "1.4", features = ["rayon", "neon"] }
blake3 = { version = "1.4", features = ["rayon"] }
kagero = { version = "0.4", default-features = false, features = ["printer"] }

[profile.release]
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fn main() -> ExitCode {
_ => {
// Convert to Path
let filepath = Path::new(file);
if !filepath.exists() || !filepath.is_file() {
if !filepath.is_file() {
p.error(file, Colors::RedBright).errorln(" does not exist or is not a file!", Colors::Red);
return ExitCode::FAILURE;
}
Expand Down

0 comments on commit 13a3ac7

Please sign in to comment.