We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e203b8 commit 781d35bCopy full SHA for 781d35b
src/error.rs
@@ -14,6 +14,4 @@ pub enum FlakeCheckerError {
14
Render(#[from] handlebars::RenderError),
15
#[error("handlebars template error: {0}")]
16
Template(#[from] Box<handlebars::TemplateError>),
17
- #[error("invalid flake.lock: {0}")]
18
- Invalid(String),
19
}
src/flake.rs
@@ -65,12 +65,11 @@ fn nixpkgs_deps(
65
.collect();
66
67
if !missing.is_empty() {
68
- let error_msg = format!(
+ println!(
69
"no nixpkgs dependency found for specified {}: {}",
70
if missing.len() > 1 { "keys" } else { "key" },
71
missing.join(", ")
72
);
73
- return Err(FlakeCheckerError::Invalid(error_msg));
74
75
76
Ok(deps)
0 commit comments