mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-01-13 10:08:28 +08:00
7 lines
280 B
Bash
Executable File
7 lines
280 B
Bash
Executable File
#!/bin/sh
|
|
# 删除软件残留,简单粗暴一点直接全部删掉,防止出现警告
|
|
# 加判断是为了怕 reinstall 后程序就再也打不开了(除非卸载后重新安装)
|
|
if [ "$1" = "remove" ] || [ "$1" = "purge" ];then
|
|
rm -rf /opt/apps/deepin-wine-runner/
|
|
fi
|