mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-03 13:40:39 +01:00
checkpatch: quote variable in "checkpatch-feature-branch.sh"
This commit is contained in:
parent
f577f719cc
commit
301d703bc3
1 changed files with 3 additions and 3 deletions
|
|
@ -21,19 +21,19 @@ else
|
|||
|
||||
RANGES=( $(git show-ref | sed 's#^\(.*\) '"$BASE_REF"'\(master\|nm-1-[0-9]\+\)$#\1..'"$HEAD"'#p' -n) )
|
||||
|
||||
[ "${#RANGES[@]}" != 0 ] || die "cannot detect git-ranges (HEAD is $(git rev-parse HEAD))"
|
||||
[ "${#RANGES[@]}" != 0 ] || die "cannot detect git-ranges (HEAD is $(git rev-parse "$HEAD"))"
|
||||
|
||||
REFS=( $(git log --reverse --format='%H' "${RANGES[@]}") )
|
||||
|
||||
if [ "${#REFS[@]}" == 0 ] ; then
|
||||
# no refs detected. This means, $HEAD is already on master (or one of the
|
||||
# stable nm-1-* branches. Just check the patch itself.
|
||||
REFS=( $HEAD )
|
||||
REFS=( "$HEAD" )
|
||||
fi
|
||||
fi
|
||||
|
||||
SUCCESS=0
|
||||
for H in ${REFS[@]}; do
|
||||
for H in "${REFS[@]}"; do
|
||||
export NM_CHECKPATCH_HEADER=$'\n'">>> VALIDATE \"$(git log --oneline -n1 "$H")\""
|
||||
git format-patch -U65535 --stdout -1 "$H" | "$BASE_DIR/checkpatch.pl"
|
||||
if [ $? != 0 ]; then
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue