Skip to content

Commit fe92c44

Browse files
miss-islingtonmatrixise
authored andcommitted
bpo-32802: Fix Travis build (GH-5589) (GH-5591)
Fix bug in travis configuration where it did not run the tests when a change includes both code and doc changes. (cherry picked from commit 32921f9) Co-authored-by: Stéphane Wirtel <[email protected]>
1 parent 7f95c8c commit fe92c44

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
@@ -80,7 +80,7 @@ before_script:
8080
echo "Files changed: "
8181
echo $files_changed
8282
83-
if ! echo $files_changed | grep -qvE '(\.rst$)|(^Doc)|(^Misc)'
83+
if ! echo "$files_changed" | grep -qvE '(\.rst$)|(^Doc)|(^Misc)'
8484
then
8585
echo "Only docs were updated, stopping build process."
8686
exit

0 commit comments

Comments
 (0)