File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed
Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change 22
33set -eu
44
5- echo $INPUT_FLAGS
6-
75if [ $# -eq 0 ]
86then
9- echo " inside zero"
107 bash <( curl -s https://codecov.io/bash)
118elif [ " x$INPUT_TOKEN " != " x" ] && [ " x$INPUT_FILE " != " x" ] && [ " x$INPUT_FLAGS " != " x" ]
129then
13- echo " inside 3"
1410 bash <( curl -s https://codecov.io/bash) -t $INPUT_TOKEN -f $INPUT_FILE -F $INPUT_FLAGS
1511elif [ " x$INPUT_TOKEN " != " x" ] && [ " x$INPUT_FILE " != " x" ]
1612then
17- echo " inside token and file"
1813 bash <( curl -s https://codecov.io/bash) -t $INPUT_TOKEN -f $INPUT_FILE
1914elif [ " x$INPUT_TOKEN " != " x" ] && [ " x$INPUT_FLAGS " != " x" ]
2015then
21- echo " inside token and flags"
2216 bash <( curl -s https://codecov.io/bash) -t $INPUT_TOKEN -F $INPUT_FLAGS
2317elif [ " x$INPUT_FLAGS " != " x" ] && [ " x$INPUT_FILE " != " x" ]
2418then
25- echo " inside flags and file"
2619 bash <( curl -s https://codecov.io/bash) -F $INPUT_FLAGS -f $INPUT_FILE
2720elif [ " x$INPUT_TOKEN " != " x" ]
2821then
29- echo " inside token"
3022 bash <( curl -s https://codecov.io/bash) -t $INPUT_TOKEN
3123elif [ " x$INPUT_FILE " != " x" ]
3224then
33- echo " inside file"
3425 bash <( curl -s https://codecov.io/bash) -f $INPUT_FILE
3526elif [ " x$INPUT_FLAGS " != " x" ]
3627then
37- echo " inside flags"
3828 bash <( curl -s https://codecov.io/bash) -F $INPUT_FLAGS
3929else
4030 exit 1
You can’t perform that action at this time.
0 commit comments