Merge branch 'fix-release-scripts' into 'main'

Fix array arguments for release scripts

See merge request nvidia/container-toolkit/container-toolkit!245
This commit is contained in:
Evan Lezar 2022-11-22 13:00:42 +00:00
commit 07a3f3040a
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