1
0
mirror of https://github.com/avatao-content/test-tutorial-framework synced 2024-11-14 16:37:18 +00:00

Include message in tfw.sh releasetfw

This commit is contained in:
Kristóf Tóth 2018-04-17 18:19:01 +02:00
parent f0a3f62847
commit ee4574523f

View File

@ -58,7 +58,7 @@ force_push_tag()
{ {
git tag -d "$TAG" > /dev/null 2>&1 || : git tag -d "$TAG" > /dev/null 2>&1 || :
git push --delete origin "$TAG" > /dev/null 2>&1 || : git push --delete origin "$TAG" > /dev/null 2>&1 || :
git tag -s -m "$1" "$TAG" git tag -s -m "TFW version $TAG released at $(date '+%H:%M:%S %Y-%m-%d')" "$TAG"
git push origin "$TAG" git push origin "$TAG"
} }