diff options
author | Diego Barrios Romero <eldruin@gmail.com> | 2018-11-14 20:13:18 +0100 |
---|---|---|
committer | Diego Barrios Romero <eldruin@gmail.com> | 2018-11-14 20:13:18 +0100 |
commit | 67d84cc9c4aeef625a6a1c942186dd60069bb329 (patch) | |
tree | 0a205906730903cb95fdfb3a70bd1810bcb54b0c | |
parent | e7ed5e6713526494e002fece6a067e12a8fb3aca (diff) | |
download | ads1x1x-async-67d84cc9c4aeef625a6a1c942186dd60069bb329.tar.gz ads1x1x-async-67d84cc9c4aeef625a6a1c942186dd60069bb329.tar.xz ads1x1x-async-67d84cc9c4aeef625a6a1c942186dd60069bb329.zip |
Add echo to variable printing
-rw-r--r-- | ci/script.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/script.sh b/ci/script.sh index df68c11..b13d9e2 100644 --- a/ci/script.sh +++ b/ci/script.sh @@ -28,7 +28,7 @@ main() { zip -0 ccov.zip `find . \( -name "ads1x1x*.gc*" -o -name "tier*.gc*" -o -name "mux*.gc*" -o -name "construction*.gc*" -o -name "linux-*.gc*" -o -name "llvmgcov.gc*" \) -print`; grcov ccov.zip -s . -t lcov --llvm --branch --ignore-not-existing --ignore-dir "/*" > lcov.info; bash <(curl -s https://codecov.io/bash) -f lcov.info; - grcov ./target -t coveralls+ -s . --token `$COVERALLS_TOKEN` --commit-sha `$TRAVIS_COMMIT` --llvm --branch --ignore-not-existing --ignore-dir "/*" + grcov ./target -t coveralls+ -s . --token `echo "$COVERALLS_TOKEN"` --commit-sha `echo "$TRAVIS_COMMIT"` --llvm --branch --ignore-not-existing --ignore-dir "/*" fi fi |