Skip to content

Commit 4c28493

Browse files
committed
fix lua51-dev. Part 3
1 parent 52f08e3 commit 4c28493

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.appveyor/install-lua.cmd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,16 @@ if NOT EXIST "lua51\lua5.1.exe" (
4040
) else (
4141
echo Using cached version of Lua v5.1
4242
)
43-
if NOT EXIST "lua51\lua5.1.lib" (
43+
if NOT EXIST "lua51_dev\lua5.1.lib" (
4444
@echo on
4545
echo Fetching Lua_DEV v5.1 from internet
4646
curl -fLsS -o %ZIP_51_DEV% http://sourceforge.net/projects/luabinaries/files/%VER_51%/Windows%%20Libraries/Dynamic/%ZIP_51_DEV%/download
47-
echo y | unzip -d lua51 %ZIP_51_DEV%
47+
unzip -d lua51_dev %ZIP_51_DEV%
4848
) else (
4949
echo Using cached version of Lua_DEV v5.1
5050
)
5151
set LUA=lua51\lua5.1.exe
52+
set LUA_DEV=%cd%\lua51_dev
5253
@echo off
5354
goto :EOF
5455

0 commit comments

Comments
 (0)