diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2018-10-25 21:32:00 +0200 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2018-10-25 21:32:12 +0200 |
commit | 038a6c5790883275279ccf4fb158aee641d78ce1 (patch) | |
tree | c5058ca016c0c90d2c56606bdda5bebf84373c96 /vendor/github.com/getlantern/systray/signdll.bash | |
parent | 0f2c53961fc98590aff4ac782f957fd3188571c4 (diff) |
[pkg] remove vendoring of getlantern/systray
after
https://github.com/getlantern/systray/commit/5fb0feca3c0677e9fa31e579ff69631f49a379a2
was merged, we don't need to keep using the vendoring of systray.
there is some flickering with the stop/start/cancel menu items
chening their orderning that still needs to be solved.
Diffstat (limited to 'vendor/github.com/getlantern/systray/signdll.bash')
-rw-r--r-- | vendor/github.com/getlantern/systray/signdll.bash | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/vendor/github.com/getlantern/systray/signdll.bash b/vendor/github.com/getlantern/systray/signdll.bash deleted file mode 100644 index b621328..0000000 --- a/vendor/github.com/getlantern/systray/signdll.bash +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/bash - -function die() { - echo $* - exit 1 -} - -if [ -z "$BNS_CERT" ] -then - die "$0: Please set BNS_CERT to the bns signing certificate for windows" -fi - -if [ -z "$BNS_CERT_PASS" ] -then - die "$0: Please set BNS_CERT_PASS to the password for the $BNS_CERT signing key" -fi - -which osslsigncode > /dev/null -if [ $? -ne 0 ] -then - echo "Installing osslsigncode" - brew install osslsigncode || die "Could not install osslsigncode" -fi -osslsigncode sign -pkcs12 "$BNS_CERT" -pass "$BNS_CERT_PASS" -in dll/systray386.dll_unsigned -out dll/systray386.dll || die "Could not sign windows 386 dll" -osslsigncode sign -pkcs12 "$BNS_CERT" -pass "$BNS_CERT_PASS" -in dll/systrayamd64.dll_unsigned -out dll/systrayamd64.dll || die "Could not sign windows 386 dll" |