mirror of
https://github.com/MoreTore/openpilot.git
synced 2026-08-05 08:16:06 +08:00
26e39eb441
old-commit-hash: 45409cb4fe
10 lines
202 B
Bash
Executable File
10 lines
202 B
Bash
Executable File
#!/bin/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
|