aboutsummaryrefslogtreecommitdiff
path: root/tag.sh
blob: 04a8826f1cd145f3e658178c54d4e4a21841754e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /bin/sh

. etc/git/modules

wd=`pwd`

if [ "$1" = "" ]; then
  echo "missing version" 1>&2
  exit 1
fi

for i in $modules; do
  echo "tag $i" 1>&2
  cd $i
  git tag -a $1 -m "Tag version $1"

  if [ $? -ne 0 ]; then
    echo "tag FAILED" 1>&2
    exit 1
  fi

  cd $wd
done