Skip to content

Commit b429984

Browse files
committed
Update Lua 5.4 from 5.4.2 to 5.4.7 while I am at it
1 parent 13e89a4 commit b429984

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

scripts/download.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ curl https://www.lua.org/ftp/lua-5.0.3.tar.gz | tar xvz -C `dirname "$0"`/../thi
44
curl https://www.lua.org/ftp/lua-5.1.5.tar.gz | tar xvz -C `dirname "$0"`/../thirdparty
55
curl https://www.lua.org/ftp/lua-5.2.4.tar.gz | tar xvz -C `dirname "$0"`/../thirdparty
66
curl https://www.lua.org/ftp/lua-5.3.6.tar.gz | tar xvz -C `dirname "$0"`/../thirdparty
7-
curl https://www.lua.org/ftp/lua-5.4.2.tar.gz | tar xvz -C `dirname "$0"`/../thirdparty
7+
curl https://www.lua.org/ftp/lua-5.4.7.tar.gz | tar xvz -C `dirname "$0"`/../thirdparty
88
curl https://www.lua.org/ftp/lua-5.5.0.tar.gz | tar xvz -C `dirname "$0"`/../thirdparty
99

scripts/setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
`dirname "$0"`/build.sh lua-5.1.5
55
`dirname "$0"`/build.sh lua-5.2.4
66
`dirname "$0"`/build.sh lua-5.3.6
7-
`dirname "$0"`/build.sh lua-5.4.2
7+
`dirname "$0"`/build.sh lua-5.4.7
88
`dirname "$0"`/build.sh lua-5.5.0

src/lua.54.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { createLauxLib, createLua, createLuaLib } from "./binding-factory";
2-
import glue from "./glue/glue-lua-5.4.2";
2+
import glue from "./glue/glue-lua-5.4.7";
33

44
let luaGlue = glue({
55
print: console.log,
66
printErr: console.error,
77
});
88

9-
export const lua = createLua(luaGlue, "5.4.2");
10-
export const lauxlib = createLauxLib(luaGlue, lua, "5.4.2");
11-
export const lualib = createLuaLib(luaGlue, "5.4.2");
9+
export const lua = createLua(luaGlue, "5.4.7");
10+
export const lauxlib = createLauxLib(luaGlue, lua, "5.4.7");
11+
export const lualib = createLuaLib(luaGlue, "5.4.7");

0 commit comments

Comments
 (0)