Skip to content

Commit

Permalink
rule add args
Browse files Browse the repository at this point in the history
  • Loading branch information
actboy168 committed Feb 26, 2024
1 parent 5567822 commit 950f1a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion compile/bootstrap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ if not lm.notest then
table.sort(tests)

lm:rule "test" {
"$bin/bootstrap"..exe, "@test/test.lua", "--touch", "$out",
args = { "$bin/bootstrap"..exe, "@test/test.lua", "--touch", "$out" },
description = "Run test.",
pool = "console",
}
Expand Down
2 changes: 1 addition & 1 deletion compile/emcc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ if not lm.notest then
table.sort(tests)

lm:rule "test" {
"node", "$bin/lua.js", "@test/test.lua", "--touch", "$out",
args = { "node", "$bin/lua.js", "@test/test.lua", "--touch", "$out" },
description = "Run test.",
pool = "console",
}
Expand Down

0 comments on commit 950f1a7

Please sign in to comment.