rustdesk/res/DEBIAN/postrm

12 lines
107 B
Plaintext
Raw Normal View History

2025-07-01 20:28:50 +08:00
#!/bin/bash
set -e
case $1 in
purge)
rm -rf /root/.config/rustdesk || true
;;
esac
exit 0