mirror of
https://github.com/sbopkg/sbopkg
synced 2024-11-09 19:50:25 +03:00
sqg: Fix wrong glob expansion while searching .info files
Signed-off-by: Willy Sudiarto Raharjo <willysr@sbopkg.org>
This commit is contained in:
parent
e5e43fdeaf
commit
bef8ffc58b
@ -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)
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user