Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/unreferenced_images.bash
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ USED_XCF=0
NOT_USED_XCF=0
NOT_USED_PICS=0

PICS=`find src/ | grep -e png -e jpg -e svg -e PNG -e JPG -e SVG -e jpeg -e JPEG`
PICS=`find src/ | grep -e png -e jpg -e svg -e PNG -e JPG -e SVG -e jpeg -e JPEG -e webp -e WEBP`
stringarray=($PICS)

for i in "${stringarray[@]}"
Expand Down Expand Up @@ -49,4 +49,4 @@ echo "number of not used pictures: $NOT_USED_PICS"
echo "number of not used XCF: $NOT_USED_XCF"

echo "number of errors: $ERRORS"
exit $ERRORS
exit $ERRORS
Loading