Files
openpilot/selfdrive/assets/strip-svg-metadata.sh
Comma Device 3721ecbf8a Release 260111
2026-01-11 18:23:29 +08:00

10 lines
210 B
Bash
Executable File

#!/usr/bin/env bash
# sudo apt install scour
for svg in $(find icons/ -type f | grep svg$); do
# scour doesn't support overwriting input file
scour $svg --remove-metadata $svg.tmp
mv $svg.tmp $svg
done