mirror of
https://github.com/rustdesk/rustdesk.git
synced 2025-05-18 15:24:16 +02:00
11 lines
107 B
Bash
Executable file
11 lines
107 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
case $1 in
|
|
purge)
|
|
rm -rf /root/.config/rustdesk || true
|
|
;;
|
|
esac
|
|
|
|
exit 0
|