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

github.com/nextcloud/files_downloadactivity.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-11-23 13:08:43 +0300
committerJoas Schilling <coding@schilljs.com>2021-11-23 13:08:43 +0300
commit3abdfb3b7d6a6372de52df2f3fcc7df3698cdfe1 (patch)
tree85d26f0913e39e63820b62362d09a5bb80130a0c
parentb6af1abb072bd58ce3ba780bbe7774f36ec1e01a (diff)
Make "make appstore" compatible with the workflow
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 0f0530d..ec96fd1 100644
--- a/Makefile
+++ b/Makefile
@@ -49,10 +49,10 @@ appstore: clean
--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