mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-01-13 01:58:27 +08:00
13 lines
273 B
Bash
13 lines
273 B
Bash
|
#!/bin/bash
|
||
|
arch=riscv64
|
||
|
libPath=/usr/lib/riscv64-linux-gnu/
|
||
|
package=$arch-runtime-for-qemu
|
||
|
|
||
|
if [[ ! -d $libPath ]]; then
|
||
|
echo "未安装 $arch 运行库,按回车键退出"
|
||
|
read
|
||
|
exit 1
|
||
|
fi
|
||
|
sudo apt purge $package -y
|
||
|
echo 卸载完成,按回车键退出
|
||
|
read
|