tfix unsign script - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 3293b36e0f0d983426f56781dedb7141e9b30b8c DIR parent 240dc888ec0a533cc5f4e5180afd2fc797ea994a HTML Author: ThomasV <thomasv@electrum.org> Date: Fri, 29 Jun 2018 09:07:23 +0200 fix unsign script Diffstat: M contrib/build-wine/unsign.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- DIR diff --git a/contrib/build-wine/unsign.sh b/contrib/build-wine/unsign.sh t@@ -5,10 +5,12 @@ cd $here if ! which osslsigncode > /dev/null 2>&1; then echo "Please install osslsigncode" + exit fi -if [ $# -neq 2 ]; then +if [ $# -ne 2 ]; then echo "Usage: $0 signed_binary unsigned_binary" + exit fi out="$1-stripped.exe"