blob: 6339ed1fae5df976be048d8e3a8f6a58c8d0f0dd (
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.2-rc12
tag=v2.0.2
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
|