Skip to content

Commit 1d663bb

Browse files
committed
missing input deps is a println!, not fatal error
1 parent 5e203b8 commit 1d663bb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/flake.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,11 @@ fn nixpkgs_deps(
6565
.collect();
6666

6767
if !missing.is_empty() {
68-
let error_msg = format!(
68+
println!(
6969
"no nixpkgs dependency found for specified {}: {}",
7070
if missing.len() > 1 { "keys" } else { "key" },
7171
missing.join(", ")
7272
);
73-
return Err(FlakeCheckerError::Invalid(error_msg));
7473
}
7574

7675
Ok(deps)

0 commit comments

Comments
 (0)