Skip to content

Commit 28322ce

Browse files
committed
rule add args
1 parent 85f7e6f commit 28322ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

make.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,13 @@ if lm.notest then
9393
end
9494

9595
lm:rule "run-bee-test" {
96-
"$bin/lua-language-server" .. exe, "$in",
96+
args = { "$bin/lua-language-server" .. exe, "$in" },
9797
description = "Run test: $in.",
9898
pool = "console",
9999
}
100100

101101
lm:rule "run-unit-test" {
102-
"bin/lua-language-server" .. exe, "$in",
102+
args = { "bin/lua-language-server" .. exe, "$in" },
103103
description = "Run test: $in.",
104104
pool = "console",
105105
}

0 commit comments

Comments
 (0)