From b1d2e9811b24771113e29b24226ca619a9e77ba3 Mon Sep 17 00:00:00 2001 From: Carlos Mogas da Silva Date: Wed, 4 Dec 2024 00:35:47 +0000 Subject: [PATCH] Use ${INPUT_*} variables instead of indexed ones --- entrypoint.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 5d4b270..3665443 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,8 +1,8 @@ #!/bin/bash -SPEC=$1 -SYSTEM=$2 -ARCH=$3 +SPEC=${INPUT_SPEC} +SYSTEM=${INPUT_SYSTEM} +ARCH=${INPUT_ARCH} SPEC_NAME=$(basename ${SPEC}) CONFIGURATION="${SYSTEM}-${ARCH}"