diff options
author | Nick Fitzgerald <fitzgen@gmail.com> | 2017-02-03 11:54:57 -0800 |
---|---|---|
committer | Nick Fitzgerald <fitzgen@gmail.com> | 2017-02-03 11:54:57 -0800 |
commit | 916dfa421f3b96fd4e6d3d3c1f40e99bd015090c (patch) | |
tree | db8c56ef7ff4f57a788afe9ea1d2a831374a80b1 | |
parent | 9c2e6f01a3e3284f8560eae7f1d333681e95f195 (diff) |
Source CI scripts to inherit environment vars
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index aaa4b2e6..69ed0c6f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,9 +25,9 @@ cache: before_install: . ./ci/before_install.sh script: - - ./ci/assert-rustfmt.sh - - ./ci/assert-docs.sh - - ./ci/test.sh + - . ./ci/assert-rustfmt.sh + - . ./ci/assert-docs.sh + - . ./ci/test.sh notifications: webhooks: http://build.servo.org:54856/travis |