We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca778a5 commit 1a6b1f4Copy full SHA for 1a6b1f4
ci/build.sh
@@ -134,9 +134,9 @@ check_checkpatch() {
134
else
135
# Ignore some cases:
136
prefix=
137
- if [[ "$msg" =~ ^"Macros with complex values should be enclosed in parentheses" ]] &&
138
- [[ "$file" =~ "/dt-bindings/" ]] ||
139
- [[ "$file" =~ "/boot/dts/" ]]; then
+ if [[ "$msg" =~ ^"Macros with complex values should be enclosed in parentheses" &&
+ ( "$file" =~ "/dt-bindings/" ||
+ "$file" =~ "/boot/dts/" ) ]]; then
140
prefix=ignored
141
((ignored++))
142
0 commit comments