mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2025-06-26 18:18:24 +00:00
Since the nvidia-container-tools and libnvidia-container* packages are now released at the same time with the same version, a more restrictive version makes sense. Here we specifically require an equal version for the nvidia-container-toolkit* packages and the libnvidia-container* packages. Signed-off-by: Evan Lezar <elezar@nvidia.com>
11 lines
225 B
Bash
Executable File
11 lines
225 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
sed -i "s;@SECTION@;${SECTION:+$SECTION/};g" debian/control
|
|
sed -i "s;@VERSION@;${VERSION:+$VERSION};g" debian/control
|
|
|
|
if [ -n "$DISTRIB" ]; then
|
|
sed -i "s;UNRELEASED;$DISTRIB;" debian/changelog
|
|
fi
|