Skip to content

Commit

Permalink
fix: Fix packager binary names for NPM
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyparrish committed Oct 24, 2023
1 parent 85122c5 commit c186569
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions npm/prepublish.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ var spawnSync = require('child_process').spawnSync;

// Command names per-platform:
var commandNames = {
linux: 'packager-linux',
darwin: 'packager-osx',
win32: 'packager-win.exe',
linux: 'packager-linux-x64',
darwin: 'packager-osx-x64',
win32: 'packager-win-x64.exe',
};

// Get the current package version:
Expand Down

0 comments on commit c186569

Please sign in to comment.