diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-03-24 17:15:18 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-03-24 17:15:18 +0900 |
commit | 7a2e843dde6b78aabab05811d3f481176537098e (patch) | |
tree | 2270cb0e2dbba4970c477aa1c9593e167e8fc457 /.travis.yml | |
parent | 6b960db9b33efe6f6a014aed08b9177a2ba201f8 (diff) | |
download | libquotient-7a2e843dde6b78aabab05811d3f481176537098e.tar.gz libquotient-7a2e843dde6b78aabab05811d3f481176537098e.zip |
.travis.yml: Escape all env variables in the configuration with '
Not only those that already caused trouble.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 3018d987..a5938670 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ matrix: include: - os: linux compiler: gcc - env: [ ENV_EVAL="CC=gcc-5 && CXX=g++-5" ] + env: [ 'ENV_EVAL="CC=gcc-5 && CXX=g++-5"' ] - os: linux compiler: clang - os: osx |