forked from matrix/element-web
Remove redundant Windows installer signing
The signing in `electron-package.sh` is no longer needed, since it's already handled in the new sign script for `electron-builder`.
This commit is contained in:
parent
99ee0fc72d
commit
cde5c9c027
|
@ -165,20 +165,6 @@ cp $distdir/squirrel-windows/RELEASES "$pubdir/update/win32/x64/"
|
||||||
# longer appears to work).
|
# longer appears to work).
|
||||||
cp $distdir/*_amd64.deb "$projdir/electron_app/dist/"
|
cp $distdir/*_amd64.deb "$projdir/electron_app/dist/"
|
||||||
|
|
||||||
# Now we sign the windows installer executables (as opposed to the main binary which
|
|
||||||
# is signed in the electron afteSign hook)
|
|
||||||
echo "Signing Windows installers..."
|
|
||||||
|
|
||||||
exe32=( "$distdir"/squirrel-windows-ia32/*.exe )
|
|
||||||
basename32=`basename "$exe32"`
|
|
||||||
osslsigncode sign $OSSLSIGNCODE_SIGNARGS -pass "$token_password" -in "$exe32" -out "$projdir/electron_app/pub/install/win32/ia32/$basename32"
|
|
||||||
|
|
||||||
exe64=( "$distdir"/squirrel-windows/*.exe )
|
|
||||||
basename64=`basename "$exe64"`
|
|
||||||
osslsigncode sign $OSSLSIGNCODE_SIGNARGS -pass "$token_password" -in "$exe64" -out "$projdir/electron_app/pub/install/win32/x64/$basename64"
|
|
||||||
|
|
||||||
echo "Installers signed"
|
|
||||||
|
|
||||||
rm -rf "$builddir"
|
rm -rf "$builddir"
|
||||||
|
|
||||||
echo "$pubdir can now be hosted on your web server."
|
echo "$pubdir can now be hosted on your web server."
|
||||||
|
|
Loading…
Reference in New Issue