mirror of
https://github.com/sbopkg/sbopkg
synced 2024-12-27 09:58:28 +01:00
only check empty_queue in process_queue when BUILDPKGS=1
This commit is contained in:
parent
db57b92f08
commit
da2fa378f7
1 changed files with 3 additions and 1 deletions
|
@ -2020,7 +2020,9 @@ process_queue () {
|
|||
QUITBUILD=""
|
||||
rm -f $SBOPKGTMPOUTPUT $FINALQUEUE $PRECHECKLOG $SUMMARYLOG
|
||||
check_root
|
||||
if empty_queue; then return; fi
|
||||
if [ "$BUILDPKGS" = 1 ]; then
|
||||
if empty_queue; then return; fi
|
||||
fi
|
||||
if [ $ROOT = "false" ]; then
|
||||
if [ "$DIAG" = 1 ]; then
|
||||
dialog --title "ERROR" --msgbox "$(crunch "You must run this \
|
||||
|
|
Loading…
Reference in a new issue