mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-08 03:57:26 +00:00
11 lines
No EOL
181 B
Bash
11 lines
No EOL
181 B
Bash
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
if [ $# -eq 0 ]
|
|
then
|
|
echo "No arguments supplied. Please make sure to provide an upload token"
|
|
exit
|
|
fi
|
|
|
|
bash <(curl -s https://codecov.io/bash) -t $1 |