mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2024-11-22 16:29:18 +00:00
10 lines
166 B
Plaintext
10 lines
166 B
Plaintext
|
#! /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
|