From: Francesco Chemolli <5175948+kinkie@users.noreply.github.com> Date: Wed, 6 Mar 2024 05:32:03 +0000 (+0000) Subject: mkrelease: ensure creation of translation: (#1716) X-Git-Tag: SQUID_7_0_1~182 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8dbebead4b6f7ff23ed3cfa93e16c2468f91a791;p=thirdparty%2Fsquid.git mkrelease: ensure creation of translation: (#1716) Ensure presence of needed packages for release automation --- diff --git a/mkrelease.sh b/mkrelease.sh index c7c5128fc2..5185aff4ac 100755 --- a/mkrelease.sh +++ b/mkrelease.sh @@ -31,6 +31,18 @@ if test "$rev" != "$checkrev" ; then exit 1; fi +po2html=`which po2html` +if test -z "$po2html" ; then + echo "cannot find po2html" + exit 1 +fi +po2txt=`which po2txt` +if test -z "$po2txt" ; then + echo "cannot find po2txt" + exit 1 +fi + + tmpdir=${TMPDIR:-${PWD}}/${name}-mkrelease rm -rf $name.tar.gz $tmpdir