This is an automated email from the ASF dual-hosted git repository.
rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-ide-tooling.git
The following commit(s) were added to refs/heads/master by this push:
new 1cef9565 SLING-8307 - Update the Eclipse tooling release process after
the restructuring and code signing changes
1cef9565 is described below
commit 1cef956565c2939f5f50fd699f41bd3bf88d621f
Author: Robert Munteanu <[email protected]>
AuthorDate: Mon Sep 22 12:11:02 2025 +0200
SLING-8307 - Update the Eclipse tooling release process after the
restructuring and code signing changes
Fix checksum generation
---
Makefile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile
index e07d6bda..3a627dc3 100644
--- a/Makefile
+++ b/Makefile
@@ -60,9 +60,9 @@ prepare-dist-dir:
cp $(P2UPDATE_PATH)/$(P2UPDATE_FILE).asc $(STAGING_DIR)/
cp $(SOURCE_BUNDLE_PATH)/$(SOURCE_BUNDLE_FILE).asc $(STAGING_DIR)/
cd $(STAGING_DIR) && for f in $(P2UPDATE_FILE) $(SOURCE_BUNDLE_FILE);
do \
- openssl dgst -sha512 -r $$f | awk '{print $$1" "$$2}' >
$$f.sha512; \
- openssl dgst -sha1 -r $$f | awk '{print $$1" "$$2}' >
$$f.sha1; \
- openssl dgst -md5 -r $$f | awk '{print $$1" "$$2}' > $$f.md5; \
+ openssl dgst -sha512 -r $$f | awk '{print $$1}' > $$f.sha512; \
+ openssl dgst -sha1 -r $$f | awk '{print $$1}' > $$f.sha1; \
+ openssl dgst -md5 -r $$f | awk '{print $$1}' > $$f.md5; \
done
.PHONE=prepare-dist-dir