From 9b515b62499ced188f47bb2978294a44faaf905f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cibrahim0814=E2=80=9D?= Date: Tue, 6 Aug 2019 18:10:57 -0700 Subject: [PATCH] exit if no args --- entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 94edc80..aac719b 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -4,7 +4,8 @@ set -eu if [ $# -eq 0 ] then - echo "No arguments supplied" + echo "No arguments supplied. Please make sure to provide an upload token" + exit fi bash <(curl -s https://codecov.io/bash) -t $1 \ No newline at end of file