This is an automated email from the ASF dual-hosted git repository. zhangduo pushed a commit to branch HBASE-29914 in repository https://gitbox.apache.org/repos/asf/hbase.git
commit fb57a3574b3ff554c37f344997a8f8f16d99f540 Author: Duo Zhang <[email protected]> AuthorDate: Mon Feb 23 12:02:35 2026 +0800 HBASE-29914 Client integration tests fails with 'mvn not found' --- dev-support/hbase_nightly_source-artifact.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-support/hbase_nightly_source-artifact.sh b/dev-support/hbase_nightly_source-artifact.sh index 5d9902e5f04..68e8a7600a8 100755 --- a/dev-support/hbase_nightly_source-artifact.sh +++ b/dev-support/hbase_nightly_source-artifact.sh @@ -34,6 +34,11 @@ function usage { echo " a git checkout, including ignored files." exit 1 } + +MVN="mvn" +if ! command -v mvn &>/dev/null; then + MVN=$MAVEN_HOME/bin/mvn +fi # if no args specified, show usage if [ $# -lt 1 ]; then usage
