From 381d9e03c56f75c7d412fcefb86fe3b4cb08c7f4 Mon Sep 17 00:00:00 2001 From: fishros Date: Tue, 14 May 2024 14:11:55 +0800 Subject: [PATCH] =?UTF-8?q?fix(wechat):=20=E4=B8=80=E9=94=AE=E6=B8=85?= =?UTF-8?q?=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tools/tool_install_wechat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tool_install_wechat.py b/tools/tool_install_wechat.py index 5d90160..8054f91 100644 --- a/tools/tool_install_wechat.py +++ b/tools/tool_install_wechat.py @@ -91,7 +91,7 @@ def install_wechat(self): if code==4: try: CmdTask("sudo apt remove wechat-linux-spark -y",os_command=True).run() - CmdTask("sudo apt remove ukylin-wechat -y",os_command=True).run() + CmdTask("sudo apt remove wechat-* -y",os_command=True).run() CmdTask("sudo docker stop wechat",os_command=True).run() CmdTask("sudo docker rm wechat",os_command=True).run() CmdTask("sudo docker image rm bestwu/wechat",os_command=True).run()