From: Arun Prakash Jana Date: Thu, 13 Feb 2020 09:48:56 +0000 (+0530) Subject: Fix #474: explicitly indicate gzip to tar X-Git-Tag: v3.1~181 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=80545534a99044f457d08024480d7e0827acbde3;p=nnn.git Fix #474: explicitly indicate gzip to tar --- diff --git a/Makefile b/Makefile index 1fac5523..5fd48c56 100644 --- a/Makefile +++ b/Makefile @@ -117,7 +117,7 @@ upload-local: sign static curl -XPOST 'https://uploads.github.com/repos/jarun/nnn/releases/$(ID)/assets?name=nnn-$(VERSION).tar.gz.sig' \ -H 'Authorization: token $(NNN_SIG_UPLOAD_TOKEN)' -H 'Content-Type: application/pgp-signature' \ --upload-file nnn-$(VERSION).tar.gz.sig - tar -cf $(BIN)-static-$(VERSION).x86-64.tar.gz $(BIN)-static + tar -zcf $(BIN)-static-$(VERSION).x86-64.tar.gz $(BIN)-static curl -XPOST 'https://uploads.github.com/repos/jarun/nnn/releases/$(ID)/assets?name=nnn-$(VERSION)-static-$(VERSION).x86-64.tar.gz' \ -H 'Authorization: token $(NNN_SIG_UPLOAD_TOKEN)' -H 'Content-Type: application/x-sharedlib' \ --upload-file $(BIN)-static-$(VERSION).x86-64.tar.gz