From 7c7db8b8594791c7cf034188d9dc535438cc3e26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cibrahim0814=E2=80=9D?= Date: Wed, 7 Aug 2019 11:05:50 -0700 Subject: [PATCH] file path test --- entrypoint.sh | 8 ++++++++ 1 file changed, 8 insertions(+) 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 ]