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

github.com/nextcloud/registration.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-12-02 20:17:31 +0300
committerJoas Schilling <coding@schilljs.com>2021-12-02 20:17:31 +0300
commit08a56f251cf06f8c82588d44e5925f400d06111a (patch)
tree00e04cc7f52c38e072c53089ef25c52c031bc69a
parentcad88cb3697bff8f94e7b091236fec33f794834a (diff)
Adjust Makefilev1.4.0
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 579babc..d27427f 100644
--- a/Makefile
+++ b/Makefile
@@ -66,9 +66,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