Skip to content

Commit

Permalink
fix(util)!: anda ci needed rpm {}
Browse files Browse the repository at this point in the history
Packages now without `rpm {}` in `anda.hcl` are also included in output of `anda ci`.
  • Loading branch information
madonuko authored Sep 19, 2023
1 parent 5fcd827 commit 15e1908
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,9 @@ pub fn fetch_build_entries(config: Manifest) -> Vec<BuildEntry> {
}
continue;
}

for arch in project.arches.unwrap_or_else(|| DEFAULT_ARCHES.to_vec()) {
entries.push(BuildEntry { pkg: name.clone(), arch: arch.clone() });
}
}
for arch in project.arches.unwrap_or_else(|| DEFAULT_ARCHES.to_vec()) {
entries.push(BuildEntry { pkg: name.clone(), arch: arch.clone() });
}
}

Expand Down

0 comments on commit 15e1908

Please sign in to comment.