Pytop/src/debs/pytop-0-0-1-x64/DEBIAN/postrm

12 lines
179 B
Bash
Executable File

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