Skip to content

Commit

Permalink
fix lua51-dev. Part 3
Browse files Browse the repository at this point in the history
  • Loading branch information
q4a committed May 25, 2018
1 parent 52f08e3 commit 4c28493
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .appveyor/install-lua.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,16 @@ if NOT EXIST "lua51\lua5.1.exe" (
) else (
echo Using cached version of Lua v5.1
)
if NOT EXIST "lua51\lua5.1.lib" (
if NOT EXIST "lua51_dev\lua5.1.lib" (
@echo on
echo Fetching Lua_DEV v5.1 from internet
curl -fLsS -o %ZIP_51_DEV% http://sourceforge.net/projects/luabinaries/files/%VER_51%/Windows%%20Libraries/Dynamic/%ZIP_51_DEV%/download
echo y | unzip -d lua51 %ZIP_51_DEV%
unzip -d lua51_dev %ZIP_51_DEV%
) else (
echo Using cached version of Lua_DEV v5.1
)
set LUA=lua51\lua5.1.exe
set LUA_DEV=%cd%\lua51_dev
@echo off
goto :EOF

Expand Down

0 comments on commit 4c28493

Please sign in to comment.