mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-23 20:27:02 +08:00
14 lines
155 B
Bash
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
|
|
|