Skip to content

Commit dcc21ec

Browse files
author
Evan Lezar
committed
Merge branch 'add-debug-output' into 'main'
Fix target folder for kitmaker See merge request nvidia/container-toolkit/container-toolkit!373
2 parents cfea6c1 + a53e360 commit dcc21ec

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

scripts/extract-packages.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,11 @@ function extract-all() {
9595
set -x
9696
# We need to publish the libnvidia-container0 packages to the kitmaker repository as a once off operation.
9797
# We include the packages here so that these will be added to the archive for the ubuntu18.04 arm64 packages.
98-
target="${ARTIFACTS_DIR}/${f##/artifacts/}"
99-
mkdir -p "$(dirname ${target})/packages/ubuntu18.04/arm64/"
98+
mkdir -p "${ARTIFACTS_DIR}/packages/ubuntu18.04/arm64/"
10099
curl -L "https://nvidia.github.io/libnvidia-container/ubuntu18.04/arm64/libnvidia-container0_0.10.0+jetpack_arm64.deb" \
101-
--output "${target}/packages/ubuntu18.04/arm64/libnvidia-container0_0.10.0+jetpack_arm64.deb"
100+
--output "${ARTIFACTS_DIR}/packages/ubuntu18.04/arm64/libnvidia-container0_0.10.0+jetpack_arm64.deb"
102101
curl -L "https://nvidia.github.io/libnvidia-container/ubuntu18.04/arm64/libnvidia-container0_0.11.0+jetpack_arm64.deb" \
103-
--output "${target}/packages/ubuntu18.04/arm64/libnvidia-container0_0.11.0+jetpack_arm64.deb"
102+
--output "${ARTIFACTS_DIR}/packages/ubuntu18.04/arm64/libnvidia-container0_0.11.0+jetpack_arm64.deb"
104103
set +x
105104
fi
106105

0 commit comments

Comments
 (0)