From 58d63f0dd8adf6e1cde43d0e16e13246b656626d Mon Sep 17 00:00:00 2001 From: Alan Date: Mon, 8 Jan 2018 21:39:56 +0100 Subject: [PATCH] Fix wrong glob expansion while searching .info files --- src/usr/libexec/sbopkg/sqg/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/usr/libexec/sbopkg/sqg/functions b/src/usr/libexec/sbopkg/sqg/functions index d8447d6..2bb4832 100644 --- a/src/usr/libexec/sbopkg/sqg/functions +++ b/src/usr/libexec/sbopkg/sqg/functions @@ -221,7 +221,7 @@ execute_build () { if [ "$ALL" == "yes" ]; then printf "Processing all SlackBuilds in the $REPO_SUBPATH repository..." - PKGSNEW=($(find "$REPO_DIR" -name *.info -print0 | xargs -r0)) + PKGSNEW=($(find "$REPO_DIR" -name "*.info" -print0 | xargs -r0)) else for PKG in ${PKGS[@]}; do INFOPATH=$(find "$REPO_DIR" -name ${PKG}.info)