Correct executable name in build script

The build script was still referencing 'electrum-setup.exe' after the project was renamed to 'pallectrum'. This ensures the correct executable name is used throughout the build process.
This commit is contained in:
2025-11-24 09:03:21 +01:00
parent f9f992afe2
commit 6502c54519

View File

@@ -74,7 +74,7 @@ info "building NSIS installer"
makensis -DPRODUCT_VERSION=$VERSION electrum.nsi makensis -DPRODUCT_VERSION=$VERSION electrum.nsi
cd dist cd dist
mv electrum-setup.exe $NAME_ROOT-$VERSION-setup.exe mv pallectrum-setup.exe $NAME_ROOT-$VERSION-setup.exe
cd .. cd ..
info "Padding binaries to 8-byte boundaries, and fixing COFF image checksum in PE header" info "Padding binaries to 8-byte boundaries, and fixing COFF image checksum in PE header"
@@ -119,4 +119,4 @@ EOF
done done
) )
sha256sum dist/electrum*.exe sha256sum dist/pallectrum*.exe