update
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
JMARyA 2025-01-12 04:27:50 +01:00
parent 3fabc91438
commit 0cc7eb8f40
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
5 changed files with 53 additions and 21 deletions

View file

@ -38,7 +38,11 @@ impl Package {
}
pub fn file_list(&self) -> Vec<String> {
list_tar_file(&self.base_path().join(self.file_name())).unwrap()
list_tar_file(&self.base_path().join(self.file_name()))
.unwrap()
.into_iter()
.filter(|x| !x.ends_with("/"))
.collect()
}
pub fn binaries(&self) -> Vec<String> {