mirror of
https://gitlab.com/square-game-liberation-front/F.E.I.S.git
synced 2025-03-02 16:23:21 +01:00
8 lines
255 B
Plaintext
8 lines
255 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# update icons
|
||
|
/bin/touch --no-create /usr/share/icons/hicolor &>/dev/null || true
|
||
|
/usr/bin/gtk-update-icon-cache /usr/share/icons/* &>/dev/null || true
|
||
|
|
||
|
# remove extracted assets not tracked by the .deb package
|
||
|
rm -rf /opt/f.e.i.s/bin/assets
|