SolarFM/debs/solarfm-0-0-1-x64/DEBIAN/postrm

13 lines
200 B
Plaintext
Raw Normal View History

2021-11-28 22:01:29 +00:00
#!/bin/bash
# Note: postrm (script executed after uninstalling the package)
# set -e
2021-11-28 22:01:29 +00:00
if [ -f /bin/solarfm ]; then
rm /bin/solarfm
fi
if [ -f /opt/solarfm.zip ]; then
rm /opt/solarfm.zip
2021-11-28 22:01:29 +00:00
fi