summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2018-05-23 14:07:32 -0700
committerGarrett D'Amore <garrett@damore.org>2018-05-23 14:07:32 -0700
commit5395cb347be03d78c8f616036b7cdda1dacab71b (patch)
tree4b4f624ff0a5f29df8f3a9da6278823c1b0ca2cb
parent3d2d97ddee42a02b8052424bb23e03204bd16177 (diff)
downloadnanomsg-5395cb347be03d78c8f616036b7cdda1dacab71b.tar.gz
Fix code coverage to use $GCOV.
-rwxr-xr-x.circleci/codecov.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/.circleci/codecov.sh b/.circleci/codecov.sh
index 5ecdc55..08922ae 100755
--- a/.circleci/codecov.sh
+++ b/.circleci/codecov.sh
@@ -1,7 +1,7 @@
#!/bin/bash
-# Copyright 2017 Garrett D'Amore <garrett@damore.org>
-# Copyright 2017 Capitar IT Group BV <info@capitar.com>
+# Copyright 2018 Garrett D'Amore <garrett@damore.org>
+# Copyright 2018 Capitar IT Group BV <info@capitar.com>
#
# This software is supplied under the terms of the MIT License, a
# copy of which should be located in the distribution where this
@@ -16,5 +16,5 @@ fi
GCOV=${GCOV:-gcov}
-bash <(curl -s https://codecov.io/bash) -x gcov || echo "Codecov did not collect coverage"
+bash <(curl -s https://codecov.io/bash) -x ${GCOV} || echo "Codecov did not collect coverage"
echo 0