mirror of
https://github.com/sbopkg/sbopkg
synced 2025-01-30 20:34:23 +01: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
2 changed files with 4 additions and 2 deletions
|
@ -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)
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue