1
0
Fork 0
mirror of https://github.com/processone/ejabberd synced 2025-10-03 01:39:35 +02:00

Apparently the --tags option is required to properly describe a brand new tag

This commit is contained in:
Badlop 2022-04-22 20:30:23 +02:00
parent ba5b6133cd
commit 985fa24130
3 changed files with 3 additions and 3 deletions

View file

@ -60,7 +60,7 @@ then
fi
rel_name='ejabberd'
rel_vsn=$(git describe | sed -e 's/-g.*//' -e 's/-/./' | tr -d '[:space:]')
rel_vsn=$(git describe --tags | sed -e 's/-g.*//' -e 's/-/./' | tr -d '[:space:]')
conf_dir="/opt/$rel_name/conf"
pem_file="$conf_dir/server.pem"
tmp_dir=$(mktemp -d "/tmp/.$myself.XXXXXX")