Skip to content

Commit 97488d8

Browse files
committed
HBASE-29878 Try to fix AWK script
1 parent 23ba7a8 commit 97488d8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

dev-support/hbase-personality.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -335,9 +335,9 @@ function author_patchfile
335335
done
336336

337337
# Filter the patchfile: skip diff sections belonging to ignored files
338-
"${AWK}" -v ignore_list="${ignore_csv}" "
338+
"${AWK}" -v ignore_list="${ignore_csv}" '
339339
BEGIN {
340-
n = split(ignore_list, files, \",\")
340+
n = split(ignore_list, files, ",")
341341
skip = 0
342342
}
343343
/^diff --git / {
@@ -350,7 +350,7 @@ function author_patchfile
350350
}
351351
}
352352
!skip { print }
353-
" "${patchfile}" > "${PATCH_DIR}/author-filtered-patch.txt"
353+
' "${patchfile}" > "${PATCH_DIR}/author-filtered-patch.txt"
354354

355355
"${GREP}" -i -n '^[^-].*@author' "${PATCH_DIR}/author-filtered-patch.txt" \
356356
>> "${PATCH_DIR}/${AUTHOR_LOGNAME}"

0 commit comments

Comments
 (0)