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
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)

View File

@ -1,6 +1,6 @@
SBOPKG NEWS
sbopkg-dev (2017-11-19 08:10:29 UTC)
sbopkg-dev (2018-01-08 23:08:43 UTC)
FEATURES
* sqg: Parallelize building of single and all packages by option -j.
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
Patch by Matteo Bernardini
* Remove SKIP_EMPTY option.
* Fix wrong glob expansion
Patch by Alan
sbopkg 0.38.1 (2016-09-01 13:42 UTC)
FEATURES