commit fe16af2ffada73f84b1f62f8301641ce0794d818 parent 7dfd3c4f7f3a59a44eadb840083d6fa5ea0256da Author: ThomasV <thomasv@electrum.org> Date: Sat, 30 Jun 2018 14:32:56 +0200 fix diff Diffstat:
M | contrib/build-wine/unsign.sh | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/build-wine/unsign.sh b/contrib/build-wine/unsign.sh @@ -45,7 +45,7 @@ with open(pe_file, "wb") as f: f.write(binary) EOF chmod +x $out - if [ ! $(diff $out $mine) ]; then + if cmp -s $out $mine; then echo "Success: $f" gpg --sign --armor --detach signed/$f else