mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-23 20:27:02 +08:00
13 lines
141 B
Bash
13 lines
141 B
Bash
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
#echo $1
|
|
|
|
if [ -z "$1" ]
|
|
then
|
|
echo "No token supplied"
|
|
exit
|
|
fi
|
|
|
|
bash <(curl -s https://codecov.io/bash) -t $1 |