add pacdef clean

This commit is contained in:
Dr. Matthias Ratajczak
2023-01-05 15:53:50 +01:00
parent 7652e9a6be
commit c4849b1f4c
6 changed files with 34 additions and 3 deletions
+3 -1
View File
@@ -25,7 +25,9 @@ impl Group {
let packages = Package::from_lines(reader.lines());
result.insert(Group {
name: name.into_string().map_err(|e| anyhow!(e))?,
name: name
.into_string()
.map_err(|e| anyhow!("could not get group name, {e:?}"))?,
packages,
});
}