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

12 lines
187 B
Bash
Executable File

#!/bin/bash
#postrm (script executed after uninstalling the package)
#set -e
if [ -f /bin/solarfm ]; then
rm /bin/solarfm
fi
if [ -d /opt/SolarFM ]; then
rm -rf /opt/SolarFM
fi