Skip to content

Commit

Permalink
disable electron-builder packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
PalmerAL committed Jul 22, 2024
1 parent 83e1c17 commit 9cfa462
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions scripts/buildAppImage.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ require('./createPackage.js')('linux', {arch: Arch.x64}).then(function (path) {
directories: {
output: 'dist/app/'
},
publish: 'never'
}

builder.build({
Expand Down
3 changes: 2 additions & 1 deletion scripts/buildDebian.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ require('./createPackage.js')('linux', { arch: toArch(platform) }).then(function
buildResources: 'resources',
output: 'dist/app/'
},
deb: installerOptions
deb: installerOptions,
publish: 'never'
}

builder.build({
Expand Down
3 changes: 2 additions & 1 deletion scripts/buildRedhat.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ require('./createPackage.js')('linux', { arch: Arch.x64 }).then(function (path)
directories: {
output: 'dist/app/'
},
rpm: installerOptions
rpm: installerOptions,
publish: 'never'
}

builder.build({
Expand Down
3 changes: 2 additions & 1 deletion scripts/createPackage.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ module.exports = function (platform, extraOptions) {
}
],
asar: false,
afterPack: afterPack
afterPack: afterPack,
publish: 'never'
}

const target = (function () {
Expand Down

0 comments on commit 9cfa462

Please sign in to comment.