Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 32921f9

Browse files
matrixiseMariatta
authored andcommitted
bpo-32802: Fix Travis build (GH-5589)
Fix bug in travis configuration where it did not run the tests when a change includes both code and doc changes.
1 parent fc1ce81 commit 32921f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ before_script:
9797
echo "Files changed: "
9898
echo $files_changed
9999
100-
if ! echo $files_changed | grep -qvE '(\.rst$)|(^Doc)|(^Misc)'
100+
if ! echo "$files_changed" | grep -qvE '(\.rst$)|(^Doc)|(^Misc)'
101101
then
102102
echo "Only docs were updated, stopping build process."
103103
exit

0 commit comments

Comments
 (0)