SCRIPTS: make publish-release try to launch make-releases-json

Now when publishing a release, if make-releases-json is usable at the same
place, it will be called to regenerate the json index of available versions.
This commit is contained in:
Willy Tarreau 2022-05-30 15:34:51 +02:00
parent f1c6ccfc6a
commit 8e9f915f8f
1 changed files with 6 additions and 0 deletions

View File

@ -17,6 +17,7 @@ BRANCH=
DEVEL=
QUIET=
AUTO=
ARG0="$0"
NEW=
DIR=
DOC=( )
@ -178,6 +179,11 @@ for i in "${DOC[@]}"; do
$CMD_GZIP < "$TARGET_DIR/doc/${i#doc/}" > "$TARGET_DIR/doc/${i#doc/}.gz"
done
if [ -x "${ARG0%/*}/make-releases-json" ]; then
# regenerate versions
"${ARG0%/*}/make-releases-json" -o "$TARGET_DIR/src/releases.json" "$TARGET_DIR"
fi
echo "Done : ls -l ${TARGET_DIR}"
( cd "$TARGET_DIR" ;
ls -l src/CHANGELOG "src${DEVEL}/haproxy-${NEW}".tar.gz{,.md5,.sha256} $(for i in "${DOC[@]}"; do echo "doc/${i#doc/}"{,.gz}; done)