mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2024-11-22 00:08:11 +00:00
Fix array arguments for release scripts
Signed-off-by: Evan Lezar <elezar@nvidia.com>
This commit is contained in:
parent
217a135eb1
commit
749ab2a746
@ -85,6 +85,6 @@ export LIBNVIDIA_CONTAINER_TAG
|
||||
export NVIDIA_CONTAINER_RUNTIME_VERSION
|
||||
export NVIDIA_DOCKER_VERSION
|
||||
|
||||
for target in "${targets[@]}"; do
|
||||
for target in ${targets[@]}; do
|
||||
"${SCRIPTS_DIR}/build-all-components.sh" "${target}"
|
||||
done
|
||||
|
@ -92,6 +92,6 @@ function sign() {
|
||||
cd -
|
||||
}
|
||||
|
||||
for target in "${TARGETS[@]}"; do
|
||||
for target in ${TARGETS[@]}; do
|
||||
sign "${target}" "$(pwd)"
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user