Files
codecov-action/entrypoint.sh
“ibrahim0814” caffaa27c7 add file path param
2019-08-07 10:51:41 -07:00

14 lines
155 B
Bash

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