Skip to content

Commit

Permalink
Fix a Kongruent path
Browse files Browse the repository at this point in the history
  • Loading branch information
RobDangerous committed Jun 18, 2024
1 parent 6d721b7 commit 6919ab4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion kmake/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ function compileKong(project: Project, from: string, to: string, platform: strin
for (let ld in libdirs) {
let libdir = path.join(libsdir, libdirs[ld]);
if (fs.statSync(libdir).isDirectory()) {
let exe = path.join(libdir, 'Tools', 'kong-' + platform + '.exe');
let exe = path.join(libdir, 'Tools', 'kongruent-' + platform + '.exe');
if (fs.existsSync(exe)) {
compilerPath = exe;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/kmake/Exporters/XCodeExporter.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/kmake/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/kmake/main.js.map

Large diffs are not rendered by default.

0 comments on commit 6919ab4

Please sign in to comment.