You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zg...@apache.org on 2019/05/24 01:24:39 UTC

[hbase] branch master updated: HBASE-22462 (addendum) Should run a 'mvn install' at the end of hadoop check in pre commit job

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

zghao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/master by this push:
     new de579cd  HBASE-22462 (addendum) Should run a 'mvn install' at the end of hadoop check in pre commit job
de579cd is described below

commit de579cd243b41fa59e4afc497610ac5576811a8f
Author: Guanghao Zhang <zg...@apache.org>
AuthorDate: Fri May 24 09:23:20 2019 +0800

    HBASE-22462 (addendum) Should run a 'mvn install' at the end of hadoop check in pre commit job
---
 dev-support/hbase-personality.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index 953cfa8..3aa1363 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -591,8 +591,9 @@ function hadoopcheck_rebuild
 
   logfile="${PATCH_DIR}/patch-install-after-hadoopcheck.txt"
   echo_and_redirect "${logfile}" \
-    "$(maven_executor)" clean install \
+    $(maven_executor) clean install \
       -DskipTests -DHBasePatchProcess
+
   return 0
 }