add pacdef clean

This commit is contained in:
steven-omaha
2023-01-05 15:53:50 +01:00
parent 7ebedc8faf
commit 6956164bed
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,
});
}