We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14fb6f6 commit 39e8e36Copy full SHA for 39e8e36
build/lint.sh
@@ -92,11 +92,12 @@ if [ "$is_release_branch" = "true" ]; then
92
output=$(cd "$ROOT" && find . -type f \
93
! -path "./build/lint.sh" \
94
! -path "./vendor/*" \
95
+ ! -path "./docs/contributing/development.md" \
96
! -path "./bin/*" \
97
! -path "./.git/*" \
98
! -name ".*" \
99
-exec grep -R -A 100 -e "CORTEX_VERSION" {} \;)
- output=$(echo "$output" | grep -e "master")
100
+ output=$(echo "$output" | grep -e "master" || true)
101
if [[ $output ]]; then
102
echo 'occurrences of "master" which should be changed to the version number:'
103
echo "$output"
0 commit comments