mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2024-11-22 16:29:18 +00:00
6f4a5a34cf
Signed-off-by: Renaud Gaubert <rgaubert@nvidia.com>
10 lines
166 B
Bash
Executable File
10 lines
166 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
sed -i "s;@SECTION@;${SECTION:+$SECTION/};g" debian/control
|
|
|
|
if [ -n "$DISTRIB" ]; then
|
|
sed -i "s;UNRELEASED;$DISTRIB;" debian/changelog
|
|
fi
|