summaryrefslogtreecommitdiff
path: root/git/tag.sh
blob: 243e3159410b3ba2b5cf4851f502df08b708c9ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#! /bin/sh

# Assume this script never run via PATH.
#
self=`realpath $0`
. `dirname $self`/modules

wd=`pwd`

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

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