summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorStéphane Wirtel <stephane@wirtel.be>2018-02-08 19:14:59 (GMT)
committerMariatta <Mariatta@users.noreply.github.com>2018-02-08 19:14:59 (GMT)
commit32921f90821ab54ffb757b7e996e5b7a71fac25e (patch)
tree40fcfe076791273d06094f8348b9563ba072018c /.travis.yml
parentfc1ce810f1da593648b4d19e7d582a235ec1dd37 (diff)
downloadcpython-32921f90821ab54ffb757b7e996e5b7a71fac25e.zip
cpython-32921f90821ab54ffb757b7e996e5b7a71fac25e.tar.gz
cpython-32921f90821ab54ffb757b7e996e5b7a71fac25e.tar.bz2
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.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index d7387e5..98d6b9a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -97,7 +97,7 @@ before_script:
echo "Files changed: "
echo $files_changed
- if ! echo $files_changed | grep -qvE '(\.rst$)|(^Doc)|(^Misc)'
+ if ! echo "$files_changed" | grep -qvE '(\.rst$)|(^Doc)|(^Misc)'
then
echo "Only docs were updated, stopping build process."
exit