mirror of
https://github.com/sbopkg/sbopkg
synced 2024-11-12 21:10:21 +03:00
Fix wrong glob expansion while searching .info files
This commit is contained in:
parent
e5e43fdeaf
commit
58d63f0dd8
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user