Skip to content

Commit ebec13d

Browse files
committed
clean
1 parent 5b01968 commit ebec13d

15 files changed

+47
-0
lines changed

scripts/clean_unused_images.sh

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,53 @@ find "$IMAGE_FOLDER" -type f | while IFS= read -r image; do
1818
continue
1919
fi
2020

21+
if [[ "$image_name" == *"arte"* ]]; then
22+
echo "Skipping arte image: $image_name"
23+
continue
24+
fi
25+
26+
if [[ "$image_name" == *"grte"* ]]; then
27+
echo "Skipping grte image: $image_name"
28+
continue
29+
fi
30+
31+
if [[ "$image_name" == *"azrte"* ]]; then
32+
echo "Skipping azrte image: $image_name"
33+
continue
34+
fi
35+
36+
if [[ "$image_name" == *"websec"* ]]; then
37+
echo "Skipping sponsor image: $image_name"
38+
continue
39+
fi
40+
41+
if [[ "$image_name" == *"venacus"* ]]; then
42+
echo "Skipping sponsor image: $image_name"
43+
continue
44+
fi
45+
46+
if [[ "$image_name" == *"CLOUD"* ]]; then
47+
echo "Skipping sponsor image: $image_name"
48+
continue
49+
fi
50+
51+
if [[ "$image_name" == *"cloud.gif"* ]]; then
52+
echo "Skipping sponsor image: $image_name"
53+
continue
54+
fi
55+
56+
if [[ "$image_name" == *"CH_logo"* ]]; then
57+
echo "Skipping sponsor image: $image_name"
58+
continue
59+
fi
60+
61+
if [[ "$image_name" == *"lasttower"* ]]; then
62+
echo "Skipping sponsor image: $image_name"
63+
continue
64+
fi
65+
66+
67+
2168
echo "Checking image: $image_name"
2269

2370
# Search for the image name using rg and capture the result

src/images/image (135).png

-23.5 KB
Binary file not shown.

src/images/image (140).png

-41.6 KB
Binary file not shown.

src/images/image (150).png

-80.3 KB
Binary file not shown.

src/images/image (178).png

-856 KB
Binary file not shown.

src/images/image (182).png

-326 KB
Binary file not shown.

src/images/image (183).png

-159 KB
Binary file not shown.

src/images/image (210).png

-70.7 KB
Binary file not shown.

src/images/image (222).png

-774 KB
Binary file not shown.

src/images/image (251).png

-198 KB
Binary file not shown.

0 commit comments

Comments
 (0)