mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 18:08:16 +00:00
11 lines
165 B
Bash
Executable File
11 lines
165 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
if test '@HAVE_PIP_COMPILE@' = 'no'; then
|
|
exit 0
|
|
fi
|
|
|
|
cd '@srcdir@'
|
|
@PIP_COMPILE@ --no-strip-extras --rebuild --upgrade ./src/requirements.in
|