mirror of https://github.com/openssl/openssl.git
check-format-commit.sh: make awk patterns more robust for MacOS and certain flavors of Linux
Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Paul Dale <ppzgs1@gmail.com>
(Merged from https://github.com/openssl/openssl/pull/25666)
(cherry picked from commit 380ea5974c)
This commit is contained in:
parent
fc53f9fc57
commit
69c809878d
|
|
@ -72,14 +72,14 @@ fi
|
|||
touch $TEMPDIR/ranges.txt
|
||||
git diff -U0 $COMMIT_RANGE | awk '
|
||||
BEGIN {myfile=""}
|
||||
/+{3}/ {
|
||||
gsub(/b\//,"",$2);
|
||||
/^\+\+\+/ {
|
||||
sub(/^b./,"",$2);
|
||||
myfile=$2
|
||||
}
|
||||
/@@/ {
|
||||
gsub(/+/,"",$3);
|
||||
/^@@/ {
|
||||
sub(/^\+/,"",$3);
|
||||
printf myfile " " $3 "\n"
|
||||
}' >> $TEMPDIR/ranges.txt || true
|
||||
}' > $TEMPDIR/ranges.txt || true
|
||||
|
||||
# filter in anything that matches on a filter regex
|
||||
for i in ${FILE_ALLOWLIST[@]}
|
||||
|
|
|
|||
Loading…
Reference in New Issue