diff --git a/Dockerfile b/Dockerfile index 59e1fa1..f9cd8d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,4 @@ # Codecov @codecov -# Ibrahim Ali @ibrahim0814 FROM alpine:3.10 diff --git a/entrypoint.sh b/entrypoint.sh index 9cd7b78..249b2df 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -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