File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 22
33set -eu
44
5+ echo $INPUT_FLAGS
6+
57if [ $# -eq 0 ]
68then
9+ echo " inside zero"
710 bash <( curl -s https://codecov.io/bash)
811elif [ " x$INPUT_TOKEN " != " x" ] && [ " x$INPUT_FILE " != " x" ] && [ " x$INPUT_FLAGS " != " x" ]
912then
13+ echo " inside 3"
1014 bash <( curl -s https://codecov.io/bash) -t $INPUT_TOKEN -f $INPUT_FILE -F $INPUT_FLAGS
1115elif [ " x$INPUT_TOKEN " != " x" ] && [ " x$INPUT_FILE " != " x" ]
1216then
17+ echo " inside token and file"
1318 bash <( curl -s https://codecov.io/bash) -t $INPUT_TOKEN -f $INPUT_FILE
1419elif [ " x$INPUT_TOKEN " != " x" ] && [ " x$INPUT_FLAGS " != " x" ]
1520then
21+ echo " inside token and flags"
1622 bash <( curl -s https://codecov.io/bash) -t $INPUT_TOKEN -F $INPUT_FLAGS
1723elif [ " x$INPUT_FLAGS " != " x" ] && [ " x$INPUT_FILE " != " x" ]
1824then
25+ echo " inside flags and file"
1926 bash <( curl -s https://codecov.io/bash) -F $INPUT_FLAGS -f $INPUT_FILE
2027elif [ " x$INPUT_TOKEN " != " x" ]
2128then
29+ echo " inside token"
2230 bash <( curl -s https://codecov.io/bash) -t $INPUT_TOKEN
2331elif [ " x$INPUT_FILE " != " x" ]
2432then
33+ echo " inside file"
2534 bash <( curl -s https://codecov.io/bash) -f $INPUT_FILE
2635elif [ " x$INPUT_FLAGS " != " x" ]
2736then
37+ echo " inside flags"
2838 bash <( curl -s https://codecov.io/bash) -F $INPUT_FLAGS
39+ else
40+ exit 1
2941fi
3042
You can’t perform that action at this time.
0 commit comments