HBASE-9123 Filter protobuf generated code from long line warning (Ted Yu)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1511846 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
953553b45a
commit
d040e9cbd9
|
@ -632,7 +632,7 @@ checkLineLengths () {
|
|||
#see http://en.wikipedia.org/wiki/Diff#Unified_format
|
||||
|
||||
MAX_LINE_LENGTH_PATCH=`expr $MAX_LINE_LENGTH + 1`
|
||||
lines=`cat $PATCH_DIR/patch | grep "^+" | grep -v "^@@" | grep -v "^+++" | grep -v "import" | awk -v len="$MAX_LINE_LENGTH_PATCH" 'length ($0) > len'`
|
||||
lines=`cat $PATCH_DIR/patch | grep "^+" | grep -v "^@@" | grep -v "^+++" | grep -v "import" | grep -v "hbase.protobuf.generated" | awk -v len="$MAX_LINE_LENGTH_PATCH" 'length ($0) > len' | head -n 10`
|
||||
ll=`echo "$lines" | wc -l`
|
||||
if [[ "$ll" -gt "$MAX_LINE_LENGTH_PATCH" ]]; then
|
||||
JIRA_COMMENT="$JIRA_COMMENT
|
||||
|
|
Loading…
Reference in New Issue