Files
codecov-action/entrypoint.sh
2019-08-06 21:46:14 -07:00

12 lines
146 B
Bash

#!/bin/bash
set -eu
if [ $# -eq 0 ]
then
bash <(curl -s https://codecov.io/bash)
else
bash <(curl -s https://codecov.io/bash) -t $1
fi