mirror of
https://github.com/sbopkg/sbopkg
synced 2024-11-09 19:50:25 +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
|
||||
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)
|
||||
|
Loading…
Reference in New Issue
Block a user