mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-upf.git
synced 2025-10-23 00:02:03 +00:00
Related: SYS#5599 Depends: I0a46b147ec6a76d909df28136cfd2b764b2c75ea (libosmocore) Change-Id: I4352dd8738a1a9de6ba2fc250ee8eef69c65ff1e
18 lines
403 B
Bash
Executable File
18 lines
403 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
if [ -z "$DOCKER_PLAYGROUND" ]; then
|
|
echo "You need to set DOCKER_PLAYGROUND"
|
|
exit 1
|
|
fi
|
|
|
|
SCRIPT=$(realpath "$0")
|
|
MANUAL_DIR=$(dirname "$SCRIPT")
|
|
|
|
COMMIT=${COMMIT:-$(git log -1 --format=format:%H)}
|
|
|
|
cd "$DOCKER_PLAYGROUND/scripts" || exit 1
|
|
|
|
OSMO_UPF_BRANCH=$COMMIT ./regen_doc.sh osmo-upf 4273 \
|
|
"$MANUAL_DIR/chapters/counters_generated.adoc" \
|
|
"$MANUAL_DIR/vty/upf_vty_reference.xml"
|