summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-11-11 16:12:44 +0100
committerJoas Schilling <coding@schilljs.com>2021-11-11 16:12:44 +0100
commitbf9f53771d12b499f473fe4bbc0ec32dfb4b1b09 (patch)
treec1cfe4c01e86fbe6bdfa4cf9db0fbb50e354c84f /Makefile
parentb14b5bc2a16a7f18ff8c4e1c9daffe2509d8fe62 (diff)
Remove version artifact
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ceac74736..093617369 100644
--- a/Makefile
+++ b/Makefile
@@ -96,9 +96,9 @@ appstore:
--certificate=$(cert_dir)/$(app_name).crt\
--path=$(sign_dir)/$(app_name); \
fi
- tar -czf $(build_dir)/$(app_name)-$(version).tar.gz \
+ tar -czf $(build_dir)/$(app_name).tar.gz \
-C $(sign_dir) $(app_name)
@if [ -f $(cert_dir)/$(app_name).key ]; then \
echo "Signing packageā€¦"; \
- openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name)-$(version).tar.gz | openssl base64; \
+ openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name).tar.gz | openssl base64; \
fi