sqg: Fix wrong glob expansion while searching .info files

Signed-off-by: Willy Sudiarto Raharjo <willysr@sbopkg.org>
This commit is contained in:
Alan 2018-01-08 21:39:56 +01:00 committed by Willy Sudiarto Raharjo
parent e5e43fdeaf
commit bef8ffc58b
No known key found for this signature in database
GPG key ID: 887B8374D7333381
2 changed files with 4 additions and 2 deletions

View file

@ -221,7 +221,7 @@ execute_build () {
if [ "$ALL" == "yes" ]; then if [ "$ALL" == "yes" ]; then
printf "Processing all SlackBuilds in the $REPO_SUBPATH repository..." 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 else
for PKG in ${PKGS[@]}; do for PKG in ${PKGS[@]}; do
INFOPATH=$(find "$REPO_DIR" -name ${PKG}.info) INFOPATH=$(find "$REPO_DIR" -name ${PKG}.info)

View file

@ -1,6 +1,6 @@
SBOPKG NEWS SBOPKG NEWS
sbopkg-dev (2017-11-19 08:10:29 UTC) sbopkg-dev (2018-01-08 23:08:43 UTC)
FEATURES FEATURES
* sqg: Parallelize building of single and all packages by option -j. * sqg: Parallelize building of single and all packages by option -j.
Requires GNU Parallel. Requires GNU Parallel.
@ -28,6 +28,8 @@ sbopkg-dev (2017-11-19 08:10:29 UTC)
* Fix 90-SBo-master.repo to accomodate SBo's new server * Fix 90-SBo-master.repo to accomodate SBo's new server
Patch by Matteo Bernardini Patch by Matteo Bernardini
* Remove SKIP_EMPTY option. * Remove SKIP_EMPTY option.
* Fix wrong glob expansion
Patch by Alan
sbopkg 0.38.1 (2016-09-01 13:42 UTC) sbopkg 0.38.1 (2016-09-01 13:42 UTC)
FEATURES FEATURES