sweep: exclude css.map files

This commit is contained in:
Franco Fichtner 2025-11-03 11:08:20 +01:00
parent e3364f6d88
commit 1e74bbca94

View file

@ -50,7 +50,7 @@ sweep-whitespace:
.for DIR in ${.CURDIR}/src
.if exists(${DIR})
find ${DIR} ! -name "*.min.*" ! -name "*.svg" \
! -name "*.ser" -type f -print0 | \
! -name "*.ser" ! -name "*.css.map" -type f -print0 | \
xargs -0 -n1 ${COREREFDIR}/Scripts/cleanfile
.endif
.endfor