blob: ca164833c82d33d4889cc56904c00ff85a15a84d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#! /bin/bash
branch=rc
tag_old=v2.0-rc4
tag=v2.0-rc5
sdir=`dirname $0`
thisdir=`pwd`
. $sdir/funcs_git.sh
for i in gluegen joal joal-demos jogl jogl-demos jocl jocl-demos ; do
cd $i
git checkout $branch
git pull jogamp $branch
git-new-milestone $i $tag_old $tag
cd $thisdir
echo done $i
echo
done
|