From 0545e0bcc65069f6cb610ec774e9a7486595ae23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AE=A1=E5=AD=90=E5=B7=A5=E5=85=B7=E7=AE=B1?= <50480726+A7T@users.noreply.github.com> Date: Sat, 22 Jun 2024 20:30:10 +0800 Subject: [PATCH] Fix: Correct file path in cp command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 脚本中的 cp 命令缺少 ${APP_PATH} 和 patches/main.yaml 之间的斜杠,添加缺失的斜杠以确保文件路径正确. --- install-x86.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-x86.sh b/install-x86.sh index d01cf27a..eea54da8 100644 --- a/install-x86.sh +++ b/install-x86.sh @@ -690,7 +690,7 @@ x86-fix-3.256() { #mv hw.py.1 hw.py cp -f ${APP_PATH}/patches/hw.py hw.py - cp -f ${APP_PATH}patches/main.yaml /etc/kvmd/ + cp -f ${APP_PATH}/patches/main.yaml /etc/kvmd/ } # end x86-fix-3.256