Skip to content

Commit c916f14

Browse files
committed
Fix relative paths for Kong
1 parent da98361 commit c916f14

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

kmake/src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ function compileKong(project: Project, from: string, to: string, platform: strin
428428
params.push(api);
429429
for (const dir of dirs) {
430430
params.push('-i');
431-
params.push(dir);
431+
params.push(path.resolve(from, dir));
432432
}
433433
params.push('-o');
434434
params.push(to);

lib/kmake/main.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)