fix: 修复批处理文件中的缩进和错误处理逻辑
Some checks failed
Build Windows / ACT Windows Checkout Verification (push) Successful in 7h0m20s
Build Windows / 编译 libcore (Windows) (20.15.1) (push) Successful in 19m49s
Build Windows / build (push) Failing after 7h0m33s

修正 copy_libcore.bat 中的缩进问题,并添加未找到 libcore.dll 时的错误提示
This commit is contained in:
shanshanzhong 2025-11-07 06:33:15 -08:00
parent 29c6e40940
commit 8937024241

View File

@ -23,6 +23,9 @@ for /r %%f in (libcore.dll) do (
echo ✅ 找到 libcore.dll: %%f echo ✅ 找到 libcore.dll: %%f
copy "%%f" libcore\bin\libcore.dll copy "%%f" libcore\bin\libcore.dll
goto :verify goto :verify
)
)
echo ⚠️ 未找到 libcore.dll
:verify :verify
echo. echo.