mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-09 00:26:25 +00:00
12 lines
146 B
Bash
12 lines
146 B
Bash
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
if [ $# -eq 0 ]
|
|
then
|
|
bash <(curl -s https://codecov.io/bash)
|
|
else
|
|
bash <(curl -s https://codecov.io/bash) -t $1
|
|
fi
|
|
|