diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-11-08 12:26:15 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-11-09 16:21:46 -0800 |
commit | 38b2fea30fe09de061fa0090dda4d6b2e57ca603 (patch) | |
tree | 2c9874e8e45761a44a2d72161000b6988a0f7ae3 /.travis.yml | |
parent | 01cea4270504cf4f2ec4361a96f7af63df9503b4 (diff) | |
download | subsurface-38b2fea30fe09de061fa0090dda4d6b2e57ca603.tar.gz |
Travis: don't use relative directories
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index b70442b3d..e7e71de72 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,11 +34,11 @@ matrix: - libicu52 before_install: - - source scripts/${SUBSURFACE_PLATFORM}/before_install.sh + - source ${TRAVIS_BUILD_DIR}/scripts/${SUBSURFACE_PLATFORM}/before_install.sh script: - - source scripts/${SUBSURFACE_PLATFORM}/travisbuild.sh + - source ${TRAVIS_BUILD_DIR}/scripts/${SUBSURFACE_PLATFORM}/travisbuild.sh after_success: - - source scripts/${SUBSURFACE_PLATFORM}/after_success.sh + - source ${TRAVIS_BUILD_DIR}/scripts/${SUBSURFACE_PLATFORM}/after_success.sh |