Skip to content

Commit

Permalink
Use x64 arch
Browse files Browse the repository at this point in the history
  • Loading branch information
morishin committed Oct 18, 2024
1 parent db5adb1 commit 8184e9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"lint:tsc": "tsc --noEmit",
"lint:prettier": "prettier --list-different \"./**/*.{js,jsx,ts,tsx,css,json}\"",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,css,json}\"",
"release:prepare": "webpack --env BUILD_ENV=production --mode=production && electron-builder build --publish always",
"release:prepare": "webpack --env BUILD_ENV=production --mode=production && electron-builder build --x64 --publish always",
"ci": "yarn run lint && yarn run test:unit"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion scripts/notarize.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = async function () {
return;
}

const appPath = path.resolve(__dirname, "../dist/production/mac-arm64/Bdash.app");
const appPath = path.resolve(__dirname, "../dist/production/mac/Bdash.app");

if (!fs.existsSync(appPath)) {
throw new Error(`Cannot find application at: ${appPath}`);
Expand Down

0 comments on commit 8184e9d

Please sign in to comment.