We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52f08e3 commit 4c28493Copy full SHA for 4c28493
.appveyor/install-lua.cmd
@@ -40,15 +40,16 @@ if NOT EXIST "lua51\lua5.1.exe" (
40
) else (
41
echo Using cached version of Lua v5.1
42
)
43
-if NOT EXIST "lua51\lua5.1.lib" (
+if NOT EXIST "lua51_dev\lua5.1.lib" (
44
@echo on
45
echo Fetching Lua_DEV v5.1 from internet
46
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%
+ unzip -d lua51_dev %ZIP_51_DEV%
48
49
echo Using cached version of Lua_DEV v5.1
50
51
set LUA=lua51\lua5.1.exe
52
+set LUA_DEV=%cd%\lua51_dev
53
@echo off
54
goto :EOF
55
0 commit comments