From e69e55b3fdfcef1f6b6882f71e9f31a53a125a55 Mon Sep 17 00:00:00 2001 From: Nick Dimiduk Date: Thu, 30 Apr 2015 11:56:59 -0700 Subject: [PATCH] HBASE-13600 check_compatibility.sh should ignore shaded jars --- dev-support/check_compatibility.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-support/check_compatibility.sh b/dev-support/check_compatibility.sh index 5410854cea6..b9a7238a32b 100755 --- a/dev-support/check_compatibility.sh +++ b/dev-support/check_compatibility.sh @@ -191,7 +191,7 @@ for ref in 1 2; do popd > /dev/null fi - JAR_FIND_EXPRESSION=(-name "hbase*.jar" ! -name "*tests*" ! -name "*sources*") + JAR_FIND_EXPRESSION=(-name "hbase*.jar" ! -name "*tests*" ! -name "*sources*" ! -name "*shade*") # Create an array of all the HBase JARs matching the find expression. JARS=$(find ${SCRIPT_DIRECTORY}/target/compatibility/${ref} "${JAR_FIND_EXPRESSION[@]}")