1
0
Fork 0

Fix e3511ecac: don't use bash specific syntax

pull/7833/head
glx 2019-11-13 21:25:53 +01:00 committed by glx22
parent cfc4568ddc
commit da2504a0de
1 changed files with 2 additions and 2 deletions

View File

@ -45,11 +45,11 @@ for filename in $(ls ${FOLDER} | grep -v ".txt$\|.md$\|sum$" | sort); do
*source* |\
*dbg.deb |\
*pdb.xz )
DEV_FILES+=" ${filename}"
DEV_FILES="${DEV_FILES} ${filename}"
;;
*)
FILES+=" ${filename}"
FILES="${FILES} ${filename}"
;;
esac
done