Skip to content

Commit

Permalink
build: use x64 for arch instead of x86_64
Browse files Browse the repository at this point in the history
This appears to have been normalised to x64 previously but now outputs x86_64 which then means the folder name is invalid when looking it up during require
  • Loading branch information
ewanharris committed Nov 12, 2021
1 parent 5df68ba commit 6f93e53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/build-all.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const path = require('path');
const pkgJson = require(path.resolve(__dirname + '/../package.json'));
const targets = Object.keys(pkgJson.binary.targets);
const nodePreGyp = path.resolve(__dirname, '..', 'node_modules/.bin/node-pre-gyp');
const archs = ['x86_64', 'arm64'];
const archs = ['x64', 'arm64'];
let actions = process.argv.slice(2); // pass in args for what to do

let isPublish = false;
Expand Down

0 comments on commit 6f93e53

Please sign in to comment.