mirror of
https://github.com/codecov/codecov-action
synced 2026-09-07 20:03:43 +00: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 |