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