diff --git a/entrypoint.sh b/entrypoint.sh index 43cdb02..83c2df6 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -2,6 +2,14 @@ set -eu + + +if [ -z "$1" ] || [ -z "$2" ]; then + echo 'Need 2 parameter are not empty' +fi + +echo $INPUT_FILE +echo $1 echo $2 if [ $# -eq 0 ]