mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/mihomo-party-org/clash-party.git
synced 2026-09-20 08:03:39 +08:00
17 lines
322 B
Bash
Executable File
17 lines
322 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# 检查 root 权限
|
|
if [ "$EUID" -ne 0 ]; then
|
|
echo "Please run as root"
|
|
exit 1
|
|
fi
|
|
|
|
# 清理可能存在的旧版本文件
|
|
rm -rf "/Applications/Clash Party.app"
|
|
rm -rf "/Applications/Clash\\ Party.app"
|
|
rm -rf "/Applications/Mihomo Party.app"
|
|
rm -rf "/Applications/Mihomo\\ Party.app"
|
|
|
|
exit 0
|