fix:修正名称错误。

This commit is contained in:
taynpg 2025-02-13 13:40:51 +08:00
parent 5ddd146ee8
commit 80d7a25200
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ if not exist %EXPORT_DIR% (
mkdir %EXPORT_DIR%
)
copy /Y %BUILD_BIN%\mlua.exe %MLUA_EXE%
%GENDEF_EXE% %FS_LIB% lua_ls %EXPORT_DIR%
%GENDEF_EXE% %FS_LIB% lua_fs %EXPORT_DIR%
copy /Y %BUILD_BIN%\lua_fs.dll %EXPORT_DIR%
echo 操作完成。
endlocal

View File

@ -16,7 +16,7 @@ mkdir -p "$EXPORT_DIR"
cp -f "$BUILD_BIN/mlua" "$MLUA_EXE"
# 运行 gendef
"$GENDEF_EXE" "$FS_LIB" lua_ls "$EXPORT_DIR"
"$GENDEF_EXE" "$FS_LIB" lua_fs "$EXPORT_DIR"
# 复制 lua_fs 动态库
cp -f "$LIB_DIR/liblua_fs.so" "$EXPORT_DIR/lua_fs.so"