diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2020-02-12 08:32:49 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2020-02-12 08:32:49 +0530 |
commit | f6e7dbf6f96f72311df564a8362b1f073c3e4194 (patch) | |
tree | 6c95a59400a834c4d5b8572a5b6c0db33ee84f15 | |
parent | bc7a81921ed974a408d4de2cbfb537fb9b45908e (diff) | |
download | nnn-f6e7dbf6f96f72311df564a8362b1f073c3e4194.tar.gz |
Fix static file upload
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -118,7 +118,7 @@ upload-local: sign static -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 - curl -XPOST 'https://uploads.github.com/repos/jarun/nnn/releases/$(ID)/assets?name=nnn-$(VERSION)-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 |