We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Platform.WINDOWS.createTarget('nsis-web', Arch.x64, Arch.ia32);
My publish settings are: publish: { provider: 'generic', url: 'https://domain.com/update/${os}_${arch}' }
publish: { provider: 'generic', url: 'https://domain.com/update/${os}_${arch}' }
Both 64bit and 32bit builds output the same app-update.yml in the resources directory. provider: generic url: 'https://domain.com/update/win_x64'
app-update.yml
provider: generic url: 'https://domain.com/update/win_x64'
The 32bit build should have a different arch variable. Correct?
The text was updated successfully, but these errors were encountered:
Please see https://github.com/electron-userland/electron-builder/wiki/NSIS#32-bit--64-bit
Sorry, something went wrong.
Fixed, arch doesn't matter for windows, so, will be 'https://domain.com/update/${os}'
'https://domain.com/update/${os}'
fix(nsis): Incorrect app-update.yml for Windows 32bit
6cb3908
Close electron-userland#1282
5cfc693
Successfully merging a pull request may close this issue.
Platform.WINDOWS.createTarget('nsis-web', Arch.x64, Arch.ia32);
My publish settings are:
publish: { provider: 'generic', url: 'https://domain.com/update/${os}_${arch}' }
Both 64bit and 32bit builds output the same
app-update.yml
in the resources directory.provider: generic url: 'https://domain.com/update/win_x64'
The 32bit build should have a different arch variable. Correct?
The text was updated successfully, but these errors were encountered: