Skip to content

Commit 3ce9fcb

Browse files
authored
Merge branch 'actboy168:master' into master
2 parents 98fe7ce + 229831c commit 3ce9fcb

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@ jobs:
1515
include:
1616
- os: windows-latest
1717
platform: win32-x64
18-
- os: ubuntu-20.04
18+
- os: ubuntu-22.04
1919
platform: linux-x64
20+
- os: ubuntu-22.04-arm
21+
platform: linux-arm64
2022
- os: macos-latest
2123
platform: darwin-x64
2224
- os: macos-latest

compile/common/package_json.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ local OS, ARCH = platform:match "^([^-]+)-([^-]+)$"
55

66
local json = {
77
name = "lua-debug",
8-
version = "2.0.10",
8+
version = "2.0.11",
99
publisher = "actboy168",
1010
displayName = "Lua Debug",
1111
description = "VSCode debugger extension for Lua",

extension/script/frontend/debuger_factory.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ local function bootstrapMakeExe(c, luaexe, args, address, dbg)
101101
if args.luaVersion:match "^lua%-" then
102102
params[#params+1] = args.luaVersion
103103
end
104-
local script = ("dofile[[%s]];DBG[[%s]]"):format(
104+
local script = ("dofile[[%s]] DBG[[%s]]"):format(
105105
(dbg / "script" / "launch.lua"):string(),
106106
table.concat(params, "/")
107107
)

0 commit comments

Comments
 (0)