mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2024-11-22 08:18:32 +00:00
Merge branch 'fix-kitmaker' into 'main'
Use component name as folder name See merge request nvidia/container-toolkit/container-toolkit!336
This commit is contained in:
commit
77a2975524
@ -93,7 +93,7 @@ function add_distro() {
|
||||
|
||||
local name="${component}-${os}-${arch}"
|
||||
|
||||
local scratch_dir="${KITMAKER_SCRATCH}/${name}"
|
||||
local scratch_dir="${KITMAKER_SCRATCH}/${name}/${component}"
|
||||
local packages_dir="${scratch_dir}/.packages"
|
||||
|
||||
mkdir -p "${packages_dir}"
|
||||
@ -113,10 +113,10 @@ function create_archive() {
|
||||
local name="${component}-${os}-${arch}"
|
||||
local archive="${KITMAKER_DIR}/${name}-${version}.tar.gz"
|
||||
|
||||
local scratch_dir="${KITMAKER_SCRATCH}/${name}"
|
||||
local scratch_dir="${KITMAKER_SCRATCH}/${name}/${component}"
|
||||
local packages_dir="${scratch_dir}/.packages/"
|
||||
|
||||
tar zcvf "${archive}" -C "${scratch_dir}/.." "${name}"
|
||||
tar zcvf "${archive}" -C "${scratch_dir}/.." "${component}"
|
||||
echo "Created: ${archive}"
|
||||
ls -l "${archive}"
|
||||
echo "With contents:"
|
||||
|
Loading…
Reference in New Issue
Block a user