openrat-cms

# OpenRat Content Management System
git clone http://git.code.weiherhei.de/openrat-cms.git
Log | Files | Refs

commit 3f2c76aad4bee337a0a96045b41c74e0a3188dc9
parent c965a5de919d07c975f970fc2c9ce008acf99639
Author: Jan Dankert <develop@jandankert.de>
Date:   Tue,  7 May 2019 23:43:27 +0200

Fix: Setzen des Tags ohne '-a'.

Diffstat:
dev-helper/tag-version.sh | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-helper/tag-version.sh b/dev-helper/tag-version.sh @@ -3,7 +3,7 @@ # VERSION=$1 -if [ "$1" -eq "" ]; then +if [ -z "$VERSION" ]; then echo need version number exit 4; fi @@ -14,7 +14,7 @@ OUTFILE=../modules/cms-core/version.php echo "<?php DEFINE('OR_VERSION','$VERSION'); DEFINE('OR_DATE','$DATE');" > $OUTFILE git commit -m "New version tag $VERSION" $OUTFILE -git tag -a $VERSION +git tag $VERSION echo "<?php DEFINE('OR_VERSION','dev-snapshot'); DEFINE('OR_DATE',date('r') );" > $OUTFILE