You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2022/08/22 11:58:04 UTC

[isis] 01/02: ISIS-2965: verification-script: 2.0.0-M8-RC1 build hotfix

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch release-2.0.0-M8-RC1
in repository https://gitbox.apache.org/repos/asf/isis.git

commit e0ed952c825372385f283f4ace1dc8eac63ede21
Author: andi-huber <ah...@apache.org>
AuthorDate: Mon Aug 22 12:52:11 2022 +0200

    ISIS-2965: verification-script: 2.0.0-M8-RC1 build hotfix
---
 scripts/verify-isis-release.sh | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/scripts/verify-isis-release.sh b/scripts/verify-isis-release.sh
index 067a52ded9..5bfd241aa3 100755
--- a/scripts/verify-isis-release.sh
+++ b/scripts/verify-isis-release.sh
@@ -87,8 +87,14 @@ _build(){
     rm -rf ~/.m2/repository/org/apache/isis
 
     echo 'Building'
+    
+	# 2.0.0-M8-RC1 verification build hotfix
+	pushd isis*/supplemental-model
+	_execmustpass mvn clean install -Dskip.git -Preleased,-all
+	popd
+    
     # previously there were multiple directories, now just the one.
-    pushd isis*/bom
+	pushd isis*/bom
     _execmustpass mvn clean install -Dskip.git -Preleased,-all
 	popd
 }