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