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

github.com/nextcloud/impersonate.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorblizzz <blizzz@arthur-schiwon.de>2021-11-19 01:47:13 +0300
committerGitHub <noreply@github.com>2021-11-19 01:47:13 +0300
commit7da4b45e6e22531247efa0e6e611a730412faa0c (patch)
tree2ba9e7cca4456071937a963d0efe1445c1b90d2c
parent996d5f042af4ee88f97803dacc46d29021611b50 (diff)
parent6b1ab2f42a567d6460e0171a576c43de8d500872 (diff)
Merge pull request #144 from nextcloud/backport/143/stable23v1.10.0
[stable23] versionless release tarball name for auto-publish
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 496b81e..2bda8ea 100644
--- a/Makefile
+++ b/Makefile
@@ -43,9 +43,9 @@ appstore: clean
--exclude=/.travis.yml \
--exclude=/Makefile \
$(project_dir)/ $(sign_dir)/$(app_name)
- 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