X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-maps.pk3dir.git;a=blobdiff_plain;f=scripts%2Fshader-audit.sh;h=9b5d9d94f7ee707dd14993ba7ecadb1704d756a0;hp=8076dea9eeee87014ab2e605d9530944bfb019e1;hb=0fe9fbff96d052db5528e688d752da9e8d2e1e27;hpb=99ea8d69016b9f583f36302fd947896684af351f diff --git a/scripts/shader-audit.sh b/scripts/shader-audit.sh index 8076dea9..9b5d9d94 100644 --- a/scripts/shader-audit.sh +++ b/scripts/shader-audit.sh @@ -165,5 +165,11 @@ textures_avail=`( cd ..; find textures/ -type f -not -name '*_norm.*' -not -name textures_used=`echo "${textures_used#$LF}" | sort -u` echo "$textures_used$LF$textures_used$LF$textures_avail" | sort | uniq -u | while IFS= read -r L; do - echo "(EE) texture $L is not referenced by any shader" + case "$L" in + textures/radiant/*) + ;; + *) + echo "(EE) texture $L is not referenced by any shader" + ;; + esac done