summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-12-02 11:04:43 +0100
committerDaniel Stenberg <daniel@haxx.se>2019-12-02 11:04:43 +0100
commite121900774dba31f176a05e14eae4bf2056481e0 (patch)
treec72d9120f3831bddd157ffca10d2b57b3de5dc86
parent2126673bc5b0b84df4ca30dba471092ca9b79a44 (diff)
downloadcurl-e121900774dba31f176a05e14eae4bf2056481e0.tar.gz
fixup try a different way to avoid blank export
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 17e8283b5..9dcc9cbda 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -439,8 +439,8 @@ matrix:
- zlib1g-dev
before_install:
- - [ -z "$OVERRIDE_CC" ] || export "${OVERRIDE_CC}"
- - [ -z "$OVERRIDE_CXX" ] || export "${OVERRIDE_CXX}"
+ - export "${OVERRIDE_CC-no=nothing}"
+ - export "${OVERRIDE_CXX-no=nothing}"
install:
- if [ "$T" = "coverage" ]; then pip2 install --user cpp-coveralls; fi