mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-11-24 20:59:37 +08:00
05b264c968
Signed-off-by: fufesou <shuanglongchen@yeah.net>
12 lines
107 B
Bash
Executable File
12 lines
107 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
case $1 in
|
|
purge)
|
|
rm -rf /root/.config/rustdesk || true
|
|
;;
|
|
esac
|
|
|
|
exit 0
|