Merge pull request #1059 from Varbin/solaris-grub-d

Test if /etc/grub.d is a directory
This commit is contained in:
Michael Boelen 2020-11-13 16:45:59 +01:00 committed by GitHub
commit 22a9fe7037
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -332,7 +332,7 @@
if [ ${SKIPTEST} -eq 0 ]; then
FOUND=0
if [ "${ROOTDIR}etc/grub.d" ]; then
if [ -d "${ROOTDIR}etc/grub.d" ]; then
CONF_FILES=$(${FINDBINARY} "${ROOTDIR}etc/grub.d" -type f -name "[0-9][0-9]*" -print0 | ${TRBINARY} '\0' ' ' | ${TRBINARY} -d '[:cntrl:]')
CONF_FILES="${GRUBCONFFILE} ${ROOTDIR}boot/grub/custom.cfg ${CONF_FILES}"
else