Skip to content

Commit

Permalink
Fix typo in codecov.sh plus switch to use variable instead of hard-co…
Browse files Browse the repository at this point in the history
…ded path (istio#3981)
  • Loading branch information
smawson authored Mar 5, 2018
1 parent 7ba4568 commit d72123c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/codecov.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ pushd "${FINAL_CODECOV_DIR}"
cat "${COVERAGEDIR}"/*.txt > coverage.txt
cat "${COVERAGEDIR}"/*.report > codecov.report
popd
echo "Repors are stored in ${FINAL_CODECOV_DIR}"
echo "Reports are stored in ${FINAL_CODECOV_DIR}"


if [[ -n ${FAILED_TESTS:-} ]]; then
Expand All @@ -104,6 +104,6 @@ echo 'Checking package coverage'
go get -u istio.io/test-infra/toolbox/pkg_check
pkg_check \
--bucket= \
--report_file=/go/out/codecov/codecov.report \
--report_file=${FINAL_CODECOV_DIR}/codecov.report \
--requirement_file=codecov.requirement

0 comments on commit d72123c

Please sign in to comment.