Fix array arguments for release scripts

Signed-off-by: Evan Lezar <elezar@nvidia.com>
This commit is contained in:
Evan Lezar 2022-11-21 21:19:29 +01:00
parent 217a135eb1
commit 749ab2a746
2 changed files with 2 additions and 2 deletions

View File

@ -85,6 +85,6 @@ export LIBNVIDIA_CONTAINER_TAG
export NVIDIA_CONTAINER_RUNTIME_VERSION export NVIDIA_CONTAINER_RUNTIME_VERSION
export NVIDIA_DOCKER_VERSION export NVIDIA_DOCKER_VERSION
for target in "${targets[@]}"; do for target in ${targets[@]}; do
"${SCRIPTS_DIR}/build-all-components.sh" "${target}" "${SCRIPTS_DIR}/build-all-components.sh" "${target}"
done done

View File

@ -92,6 +92,6 @@ function sign() {
cd - cd -
} }
for target in "${TARGETS[@]}"; do for target in ${TARGETS[@]}; do
sign "${target}" "$(pwd)" sign "${target}" "$(pwd)"
done done