mirror of
https://github.com/sbopkg/sbopkg
synced 2024-12-28 09:58:58 +01:00
tweak the output of the summary log
This commit is contained in:
parent
2ced9364a4
commit
0a6d282289
1 changed files with 2 additions and 3 deletions
|
@ -2797,14 +2797,13 @@ process_queue() {
|
|||
build_package $PKGPATH $PKGBUILD 2>&1 | tee $TMPBUILDLOG ||
|
||||
break
|
||||
echo "Done building package for $PKG."
|
||||
NEWPACKAGE=$(ls -1t $SB_OUTPUT/*.t?z | head -n1)
|
||||
cd $SB_OUTPUT
|
||||
NEWPACKAGE=$(ls -1t *.t?z | head -n1)
|
||||
echo "Package $COUNTER: $PKG" >> $TMPSUMMARYLOG
|
||||
#echo "$PKG:" >> $TMPSUMMARYLOG
|
||||
echo "Built package: $NEWPACKAGE" >> $TMPSUMMARYLOG
|
||||
echo "Built package: $NEWPACKAGE"
|
||||
if [[ $QUEUETYPE == "buildinstall" ]]; then
|
||||
if [[ $SB_OUTPUT/*.t?z ]]; then
|
||||
#install_package $SB_OUTPUT *.t?z
|
||||
cd $SB_OUTPUT
|
||||
NEWPACKAGE=$(ls -1t *.t?z | head -n1)
|
||||
install_package $SB_OUTPUT $NEWPACKAGE
|
||||
|
|
Loading…
Reference in a new issue