mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2024-11-22 16:29:18 +00:00
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:
commit
07a3f3040a
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user