From 9e9a06459baa1ff2283c3e3baa05f1eff23d163d Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Fri, 7 Aug 2020 21:09:06 -0400 Subject: [PATCH] Update entrypoint.sh --- entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index f5436d0..32d8e9b 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -3,9 +3,9 @@ set -o pipefail -DIR=$2 +EXTRA_ARGS=$2 -OUTPUT=$(depcheck "${DIR}" 2>&1) && exit_status=$? || exit_status=$? +OUTPUT=$(depcheck "${EXTRA_ARGS}" 2>&1) && exit_status=$? || exit_status=$? echo "$OUTPUT" echo "::set-output name=exit_code::$exit_status"