From b8cc1b68aabed1cdacd943690d6ab8d43a4dce3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cibrahim0814=E2=80=9D?= Date: Wed, 7 Aug 2019 12:42:49 -0700 Subject: [PATCH] add debug statements --- entrypoint.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index 55a1742..db7aee2 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -2,29 +2,41 @@ set -eu +echo $INPUT_FLAGS + if [ $# -eq 0 ] then + echo "inside zero" bash <(curl -s https://codecov.io/bash) elif [ "x$INPUT_TOKEN" != "x" ] && [ "x$INPUT_FILE" != "x" ] && [ "x$INPUT_FLAGS" != "x" ] then + echo "inside 3" bash <(curl -s https://codecov.io/bash) -t $INPUT_TOKEN -f $INPUT_FILE -F $INPUT_FLAGS elif [ "x$INPUT_TOKEN" != "x" ] && [ "x$INPUT_FILE" != "x" ] then + echo "inside token and file" bash <(curl -s https://codecov.io/bash) -t $INPUT_TOKEN -f $INPUT_FILE elif [ "x$INPUT_TOKEN" != "x" ] && [ "x$INPUT_FLAGS" != "x" ] then + echo "inside token and flags" bash <(curl -s https://codecov.io/bash) -t $INPUT_TOKEN -F $INPUT_FLAGS elif [ "x$INPUT_FLAGS" != "x" ] && [ "x$INPUT_FILE" != "x" ] then + echo "inside flags and file" bash <(curl -s https://codecov.io/bash) -F $INPUT_FLAGS -f $INPUT_FILE elif [ "x$INPUT_TOKEN" != "x" ] then + echo "inside token" bash <(curl -s https://codecov.io/bash) -t $INPUT_TOKEN elif [ "x$INPUT_FILE" != "x" ] then + echo "inside file" bash <(curl -s https://codecov.io/bash) -f $INPUT_FILE elif [ "x$INPUT_FLAGS" != "x" ] then + echo "inside flags" bash <(curl -s https://codecov.io/bash) -F $INPUT_FLAGS +else + exit 1 fi