Skip to content

Commit 0ca93ca

Browse files
committed
Update xmake.ts
1 parent 311a195 commit 0ca93ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xmake.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ async function RunXmakeBuild(file: string, executable: string) {
124124
// console.log({ os });
125125

126126
const others = [
127-
`${executable} build -v -y -w --project=. "--file=./xmake.lua" test`,
127+
`${executable} build -v -y -w --project=. "--file=./xmake.lua" -g test`,
128128
];
129129
await RunCommandShell(others, cwd);
130130
}
@@ -133,7 +133,7 @@ async function RunXmakeTest(file: string, executable: string) {
133133
console.log({ file });
134134
// console.log({ os });
135135
const others = [
136-
`${executable} run -v --project=. "--file=./xmake.lua" test`,
136+
`${executable} run -v --project=. "--file=./xmake.lua" -g test`,
137137
];
138138
const cwd = path.dirname(file);
139139
await RunCommandShell(others, cwd);

0 commit comments

Comments
 (0)