Don't fail if CODECOV_TOKEN is undefined

This commit is contained in:
Grimes 2018-05-28 13:04:51 -07:00 committed by Grimes
parent 0cf0ae6755
commit bf4b856e0c
1 changed files with 2 additions and 2 deletions

View File

@ -19,8 +19,8 @@ cargo kcov --lib
if [[ -z "$CODECOV_TOKEN" ]]; then
echo CODECOV_TOKEN undefined
exit 1
else
bash <(curl -s https://codecov.io/bash)
fi
bash <(curl -s https://codecov.io/bash)
exit 0