Add a prerequisites check

This commit is contained in:
2024-01-10 22:48:56 +01:00
parent 6fa97f2e4a
commit 4bb04c7a98
5 changed files with 75 additions and 23 deletions

View File

@ -189,11 +189,9 @@ impl Chart {
return Err(Box::from("unknown repository kind is found"));
}
}
None => {
Err(Box::from(
"repository object is not filled up for the chart",
))
}
None => Err(Box::from(
"repository object is not filled up for the chart",
)),
}
}
}