blob: 4958afe1c8dc584af9e7827b44843fc00b9d9408 (
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-rc9
tag=v2.0-rc10
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
|