Skip to content

Commit

Permalink
try to fix map compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
gajop committed May 16, 2024
1 parent 7628099 commit 168dbad
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions dist_cfg/exts/compiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ class Compiler extends EventEmitter {

let executableBin;
if (process.platform === 'win32') {
executableBin = 'springMapConvNG.exe';
executableBin = 'windows/springMapConvNG.exe';
} else if (process.platform === 'linux') {
executableBin = 'mapcompile';
executableBin = 'linux/mapcompile';
} else {
const errMsg = `Unsupported platform: ${process.platform}, cannot compile`;
log.error(errMsg);
Expand Down

0 comments on commit 168dbad

Please sign in to comment.