Skip to content

Commit

Permalink
remove macOS portable (chaiNNer-org#2119)
Browse files Browse the repository at this point in the history
  • Loading branch information
stonerl authored Aug 20, 2023
1 parent fe42672 commit f7f327a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
5 changes: 1 addition & 4 deletions forge.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const config = {
},
{
name: '@electron-forge/maker-zip',
platforms: ['darwin', 'linux', 'win32'],
platforms: ['linux', 'win32'],
},
{
name: '@electron-forge/maker-dmg',
Expand Down Expand Up @@ -137,9 +137,6 @@ const config = {
case 'win32':
zip.addFile('portable', Buffer.alloc(0));
break;
case 'darwin':
zip.addFile('chaiNNer.app/Contents/MacOS/portable', Buffer.alloc(0));
break;
case 'linux':
zip.addFile('chaiNNer-linux-x64/portable', Buffer.alloc(0));
break;
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"make": "cross-env NODE_ENV=production electron-forge make",
"make-linux-zip": "cross-env NODE_ENV=production electron-forge make --targets @electron-forge/maker-zip --platform linux",
"make-win-zip": "cross-env NODE_ENV=production electron-forge make --targets @electron-forge/maker-zip --platform win32",
"make-mac-zip": "cross-env NODE_ENV=production electron-forge make --targets @electron-forge/maker-zip --platform darwin",
"publish": "cross-env NODE_ENV=production electron-forge publish",
"lint": "npm run lint:js && npm run lint:py",
"lint:js": "eslint . --ext \".js,.jsx,.ts,.tsx\" && stylelint src/**/*.scss",
Expand Down

0 comments on commit f7f327a

Please sign in to comment.