Skip to content

Commit 45a4816

Browse files
authored
Merge pull request #762 from nextcloud/build/fix-Makefile
[stable-3.3] build(make): fix Makefile for release building
2 parents 69d2336 + 09c67e1 commit 45a4816

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ appstore: clean
4444
--exclude=/tests \
4545
--exclude=/translationfiles \
4646
$(project_dir)/ $(sign_dir)/$(app_name)
47-
tar -czf $(build_dir)/$(app_name)-$(version).tar.gz \
47+
tar -czf $(build_dir)/$(app_name).tar.gz \
4848
-C $(sign_dir) $(app_name)
4949
@if [ -f $(cert_dir)/$(app_name).key ]; then \
5050
echo "Signing package…"; \
51-
openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name)-$(version).tar.gz | openssl base64; \
51+
openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name).tar.gz | openssl base64; \
5252
fi

0 commit comments

Comments
 (0)