mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-11-26 06:09:03 +08:00
12 lines
107 B
Bash
12 lines
107 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
case $1 in
|
|
purge)
|
|
rm -rf /root/.config/rustdesk || true
|
|
;;
|
|
esac
|
|
|
|
exit 0
|