Skip to content

Commit 4a87a38

Browse files
committed
remove debug statements
1 parent b8cc1b6 commit 4a87a38

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

entrypoint.sh

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,39 +2,29 @@
22

33
set -eu
44

5-
echo $INPUT_FLAGS
6-
75
if [ $# -eq 0 ]
86
then
9-
echo "inside zero"
107
bash <(curl -s https://codecov.io/bash)
118
elif [ "x$INPUT_TOKEN" != "x" ] && [ "x$INPUT_FILE" != "x" ] && [ "x$INPUT_FLAGS" != "x" ]
129
then
13-
echo "inside 3"
1410
bash <(curl -s https://codecov.io/bash) -t $INPUT_TOKEN -f $INPUT_FILE -F $INPUT_FLAGS
1511
elif [ "x$INPUT_TOKEN" != "x" ] && [ "x$INPUT_FILE" != "x" ]
1612
then
17-
echo "inside token and file"
1813
bash <(curl -s https://codecov.io/bash) -t $INPUT_TOKEN -f $INPUT_FILE
1914
elif [ "x$INPUT_TOKEN" != "x" ] && [ "x$INPUT_FLAGS" != "x" ]
2015
then
21-
echo "inside token and flags"
2216
bash <(curl -s https://codecov.io/bash) -t $INPUT_TOKEN -F $INPUT_FLAGS
2317
elif [ "x$INPUT_FLAGS" != "x" ] && [ "x$INPUT_FILE" != "x" ]
2418
then
25-
echo "inside flags and file"
2619
bash <(curl -s https://codecov.io/bash) -F $INPUT_FLAGS -f $INPUT_FILE
2720
elif [ "x$INPUT_TOKEN" != "x" ]
2821
then
29-
echo "inside token"
3022
bash <(curl -s https://codecov.io/bash) -t $INPUT_TOKEN
3123
elif [ "x$INPUT_FILE" != "x" ]
3224
then
33-
echo "inside file"
3425
bash <(curl -s https://codecov.io/bash) -f $INPUT_FILE
3526
elif [ "x$INPUT_FLAGS" != "x" ]
3627
then
37-
echo "inside flags"
3828
bash <(curl -s https://codecov.io/bash) -F $INPUT_FLAGS
3929
else
4030
exit 1

0 commit comments

Comments
 (0)