Fixing pro-epilog_wrapper.sh to prevent error

pro-epilog_wrapper exited with error when dir contains more than 1 file
This commit is contained in:
Kasper D. Fischer 2021-05-25 13:17:42 +02:00
parent d49fd18668
commit d76510b2aa

View File

@ -7,7 +7,7 @@ SCRIPTNAME=$(basename $0)
DIRS="/opt/SGE/local/${SCRIPTNAME}.d /usr/local/etc/gridengine/${SCRIPTNAME}.d"
for DIR in ${DIRS} ; do
if [ -d ${DIR} ] ; then
if [ ! -z $(ls ${DIR}/[0-9][0-9]*) ] ; then
if [ ! -z "$(ls ${DIR}/[0-9][0-9]*)" ] ; then
FILES="${FILES} $(ls ${DIR}/[0-9][0-9]*)"
fi
fi