Skip to content

Commit

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

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

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

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

const target = (function () {
Expand Down

0 comments on commit 5021174

Please sign in to comment.