mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-19 03:51:02 -05:00
Build an MSI installer for the new Win64 binaries.
The MSI format has a fixed field for target architecture, so there's no way to build a single MSI that can decide at install time whether to install 32-bit or 64-bit (or both). The best you can do along those lines, apparently, is to have two MSI files plus a bootstrap .EXE that decides which of them to run, and as far as I'm concerned that would just reintroduce all the same risks and annoyances that made us want to migrate away from .EXE installers anyway.
This commit is contained in:
2
sign.sh
2
sign.sh
@ -27,7 +27,7 @@ sign() {
|
||||
|
||||
cd "$1"
|
||||
echo "===== Signing with key '$keyname'"
|
||||
for i in putty*src.zip putty*.tar.gz w32/*.exe w32/*.zip w32/*.msi w64/*.exe w64/*.zip w32old/*.exe w32old/*.zip; do
|
||||
for i in putty*src.zip putty*.tar.gz w32/*.exe w32/*.zip w32/*.msi w64/*.exe w64/*.zip w64/*.msi w32old/*.exe w32old/*.zip; do
|
||||
sign --detach-sign "$i" "$i.gpg"
|
||||
done
|
||||
for i in md5sums sha1sums sha256sums sha512sums; do
|
||||
|
Reference in New Issue
Block a user