From 75bf090990d5237e2f76f83d00dce5259c39a294 Mon Sep 17 00:00:00 2001 From: "Doroszlai, Attila" Date: Fri, 23 Aug 2019 12:32:40 +0200 Subject: [PATCH] HDDS-2024. rat.sh: grep: warning: recursive search of stdin Closes #1343 --- hadoop-ozone/dev-support/checks/rat.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hadoop-ozone/dev-support/checks/rat.sh b/hadoop-ozone/dev-support/checks/rat.sh index 68ca56ed60e..480e4d37204 100755 --- a/hadoop-ozone/dev-support/checks/rat.sh +++ b/hadoop-ozone/dev-support/checks/rat.sh @@ -17,7 +17,7 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" cd "$DIR/../../.." || exit 1 mkdir -p target -REPORT_FILE="$DIR/../../../target/rat-aggretaged.txt" +REPORT_FILE="$DIR/../../../target/rat-aggregated.txt" mkdir -p "$(dirname "$REPORT_FILE")" cd hadoop-hdds || exit 1 @@ -26,8 +26,8 @@ cd ../hadoop-ozone || exit 1 mvn -B -fn org.apache.rat:apache-rat-plugin:0.13:check cd "$DIR/../../.." || exit 1 -grep -r --include=rat.txt "!????" | tee "$REPORT_FILE" -if [ "$(cat target/rat-aggregated.txt)" ]; then +grep -r --include=rat.txt "!????" hadoop-hdds hadoop-ozone | tee "$REPORT_FILE" +if [[ -s "${REPORT_FILE}" ]]; then exit 1 fi