This is an automated email from the ASF dual-hosted git repository.
cdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git
The following commit(s) were added to refs/heads/develop by this push:
new bb3ea217b7 chore: Made the update goal also "install" the artifacts
locally, or the website generation task will fail.
bb3ea217b7 is described below
commit bb3ea217b7ec8f62cbf09f7ee1ff9e7a47342f39
Author: Christofer Dutz <[email protected]>
AuthorDate: Fri Aug 22 20:12:00 2025 +0200
chore: Made the update goal also "install" the artifacts locally, or the
website generation task will fail.
---
tools/release-0-update-generated-code.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/release-0-update-generated-code.sh
b/tools/release-0-update-generated-code.sh
index 532dbd7167..e7f858e789 100755
--- a/tools/release-0-update-generated-code.sh
+++ b/tools/release-0-update-generated-code.sh
@@ -140,7 +140,7 @@ fi
# Run the main build to re-generate the generated code.
if ! docker compose -f "$DIRECTORY/tools/docker-compose.yaml" run releaser \
- bash -c "/ws/mvnw -e -P
with-c,with-dotnet,with-go,with-java,with-python,enable-all-checks,update-generated-code
-Dmaven.repo.local=/ws/out/.repository clean package -DskipTests"; then
+ bash -c "/ws/mvnw -e -P
with-c,with-dotnet,with-go,with-java,with-python,enable-all-checks,update-generated-code
-Dmaven.repo.local=/ws/out/.repository clean install -DskipTests"; then
echo "❌ Got non-0 exit code from running the code-generation inside
docker, aborting."
exit 1
else