Skip to content

Commit

Permalink
fix "set -e" failure in new pkg_summary generation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Perkin committed Jan 14, 2021
1 parent e631a19 commit 0e6c1da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgtools/pbulk/files/pbulk/scripts/build
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ echo "Building pkg_summary..."
cd ${packages}/All
{
sed -e 's,^,../pkginfo/,' -e 's/$/.pkglist/' < ${loc}/success \
| sort | xargs cat 2>/dev/null > pkg_files
| sort | xargs cat 2>/dev/null > pkg_files || true
cat pkg_files | ${gzip} -c > pkg_files.gz &
cat pkg_files | ${bzip2} -c > pkg_files.bz2 &
cat pkg_files | ${xz} -zc > pkg_files.xz &
Expand All @@ -72,7 +72,7 @@ cd ${packages}/All
} &
{
sed -e 's,^,../pkginfo/,' -e 's/$/.pkginfo/' < ${loc}/success \
| sort | xargs cat 2>/dev/null > pkg_summary
| sort | xargs cat 2>/dev/null > pkg_summary || true
cat pkg_summary | ${gzip} -c > pkg_summary.gz &
cat pkg_summary | ${bzip2} -c > pkg_summary.bz2 &
cat pkg_summary | ${xz} -zc > pkg_summary.xz &
Expand Down

0 comments on commit 0e6c1da

Please sign in to comment.