Files
codecov-action/entrypoint.sh
T

12 lines
146 B
Bash
Raw Normal View History

2019-08-06 14:02:11 -07:00
#!/bin/bash
set -eu
2019-08-06 18:02:35 -07:00
if [ $# -eq 0 ]
2019-08-06 17:19:19 -07:00
then
2019-08-06 21:46:14 -07:00
bash <(curl -s https://codecov.io/bash)
else
bash <(curl -s https://codecov.io/bash) -t $1
2019-08-06 17:19:19 -07:00
fi