Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-11-11 18:12:44 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2021-11-22 15:57:20 +0300
commitcdc94a9ec13b3fbf2eba6f315a78310394f94269 (patch)
tree69615bba7b29c19f7c6af07a87fb9d9bf87f41ee
parent525d27e83fc03d47dfb2ace61af1313694925be2 (diff)
Remove version artifact
Signed-off-by: Joas Schilling <coding@schilljs.com>
-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