source: MondoRescue/branches/2.0.8/tools/mknewtag@ 614

Last change on this file since 614 was 614, checked in by bcornec, 18 years ago

svn diff done before updating TAG

  • Property svn:executable set to *
File size: 818 bytes
RevLine 
[612]1#!/bin/bash
2#
3# Prepare a new delivery of the same version by changing TAG
4#
5# $Id$
6#
7# Syntax: mknewtag
8#
9
10umask 022
11dname=`dirname $0`
12prem=`echo $dname |cut -c1`
13if [ ${prem} == "/" ]; then
14 export TOOLHOME=$dname
15else
16 export TOOLHOME=${PWD}/$dname
17fi
18
19. $TOOLHOME/common-env
20. $TOOLHOME/distro-env
21
22# We need to get $VER and $TAG
23if [ "$1" = "" ]; then
24 LAST=`cat ${TOPDIR}/LAST`
25else
26 LAST=$1
27 shift
28fi
29VER=`echo $LAST | cut -d- -f1`
30
31TAG=`echo $LAST | cut -d- -f2`
32echo -n "Changing TAG of version $VER value from $TAG to "
33((TAG=$TAG+1))
34echo "$TAG"
35nb=`svn diff $TOOLHOME/.. | wc -l`
36if [ $nb -gt 0 ]; then
[614]37 echo "You'll have to check in order before updating the TAG"
38 echo "$TAG" > $TOOLHOME/TAG
[612]39else
[614]40 echo "$TAG" > $TOOLHOME/TAG
[613]41 (cd $TOOLHOME/.. ; svn ci -m "Automatic update of TAG to $TAG" ; svn up)
[612]42fi
Note: See TracBrowser for help on using the repository browser.