mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-11-23 19:49:05 +08:00
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
|