0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-01-31 14:12:52 +00:00

🔨 Case-insensitive tests list

This commit is contained in:
Scott Lahteine 2021-09-19 18:58:12 -05:00
parent c1d7e234e1
commit 008284934c

View file

@ -208,7 +208,7 @@ if [[ $TESTENV == '-' ]]; then
NAMES=()
MENU=()
BIGLEN=0
for FILE in $( ls -1 $TESTPATH/* )
for FILE in $( ls -1 $TESTPATH/* | sort -f )
do
let IND++
TNAME=${FILE/$TESTPATH\//}