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

. etc/git/modules

wd=`pwd`

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

if [ "$tag_modules" = "" ]; then
  tag_modules="$modules"
fi

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

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

  cd $wd
done