rustdesk/DEBIAN/postrm

12 lines
107 B
Plaintext
Raw Normal View History

2022-04-18 15:37:35 +08:00
#!/bin/bash
set -e
case $1 in
purge)
rm -rf /root/.config/rustdesk || true
;;
esac
exit 0