You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by aw...@apache.org on 2015/07/13 19:58:55 UTC

hadoop git commit: HADOOP-12197. smart-apply-patch shouldn't print successful dryrun in apply mode (Kengo Seki via aw)

Repository: hadoop
Updated Branches:
  refs/heads/HADOOP-12111 5e1985501 -> 33f2feb1a


HADOOP-12197. smart-apply-patch shouldn't print successful dryrun in apply mode (Kengo Seki via aw)


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/33f2feb1
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/33f2feb1
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/33f2feb1

Branch: refs/heads/HADOOP-12111
Commit: 33f2feb1a5dfaa3882c5208a0f21996217422666
Parents: 5e19855
Author: Allen Wittenauer <aw...@apache.org>
Authored: Mon Jul 13 10:58:47 2015 -0700
Committer: Allen Wittenauer <aw...@apache.org>
Committed: Mon Jul 13 10:58:47 2015 -0700

----------------------------------------------------------------------
 dev-support/smart-apply-patch.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/33f2feb1/dev-support/smart-apply-patch.sh
----------------------------------------------------------------------
diff --git a/dev-support/smart-apply-patch.sh b/dev-support/smart-apply-patch.sh
index bfd2aeb..96bda92 100755
--- a/dev-support/smart-apply-patch.sh
+++ b/dev-support/smart-apply-patch.sh
@@ -485,7 +485,7 @@ function git_apply
   echo "Applying the patch:"
   run_and_redirect "${PATCH_DIR}/apply-patch-git-apply.log" \
     "${GIT}" apply --binary -v --stat --apply "-p${PATCHPREFIX}" "${PATCH_FILE}"
-  cat "${PATCH_DIR}/apply-patch-git-apply.log"
+  ${GREP} -v "^Checking" "${PATCH_DIR}/apply-patch-git-apply.log"
 }