summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xauto.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/auto.sh b/auto.sh
index 6e01b6a..f1ff99b 100755
--- a/auto.sh
+++ b/auto.sh
@@ -69,6 +69,8 @@ function scan_sce_for_errors() {
SCE_FILE_LIST=$(find ${ZIPFILE} -type f -iname "*.sce" ! \
-path "*/DEPENDENCIES*" | \
awk -vFS=/ -vOFS="." '{print $NF,$0}' | \
+ sed 's/^[[:upper:]]*//g' | \
+ sed 's/^[[:lower:]]*//g' | \
sort -n -t _ -k1 -k2 | cut -d"." -f3-)
SCE_FILE_COUNT=$(echo "${SCE_FILE_LIST}" | wc -l)