clean up comments

This commit is contained in:
“ibrahim0814”
2019-08-07 23:40:42 -07:00
parent bd3230c275
commit ee0d391ad0
2 changed files with 2 additions and 4 deletions

View File

@@ -1,5 +1,4 @@
# Codecov @codecov
# Ibrahim Ali @ibrahim0814
FROM alpine:3.10

View File

@@ -1,13 +1,12 @@
#!/bin/bash
# Codecov @codecov
# Ibrahim Ali @ibrahim0814
set -eu
if [ $# -eq 0 ]
then
echo "Please provide an upload token"
echo "Please provide an upload token from codecov.io"
exit 1
elif [ "x$INPUT_TOKEN" != "x" ] && [ "x$INPUT_FILE" != "x" ] && [ "x$INPUT_FLAGS" != "x" ] && [ "x$INPUT_NAME" != "x" ]
then
@@ -34,6 +33,6 @@ elif [ "x$INPUT_TOKEN" != "x" ]
then
bash <(curl -s https://codecov.io/bash) -t $INPUT_TOKEN
else
echo "Please provide an upload token and valid arguments"
echo "Please provide an upload token from codecov.io with valid arguments"
exit 1
fi