mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 09:57:41 +00:00
11 lines
155 B
Bash
11 lines
155 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -euv
|
||
|
|
||
|
cd @srcdir@
|
||
|
|
||
|
if test "@HAVE_PIP_COMPILE@" != "no" ; then
|
||
|
rm -f ./src/requirements.txt
|
||
|
pip-compile -r ./src/requirements.in
|
||
|
fi
|