From aa539260428975df4d46ac611d52ffc92403174f Mon Sep 17 00:00:00 2001 From: Paul Carlton Date: Tue, 4 Oct 2022 14:04:07 +0100 Subject: [PATCH] add dependencies --- src/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/entrypoint.sh b/src/entrypoint.sh index 098af04..c0dc945 100644 --- a/src/entrypoint.sh +++ b/src/entrypoint.sh @@ -128,7 +128,7 @@ download() { } get_dependencies() { - IFS=';' read -ra depenency <<< "$DEPENDENCIES" + IFS=';' read -ra dependency <<< "$DEPENDENCIES" for repos in ${dependency[@]}; do name=$(cut -f 1 -d, <<< "$repos") url=$(cut -f 2 -d, <<< "$repos")