summaryrefslogtreecommitdiffstats
path: root/git/git-tar-changelog.sh
blob: 6556f4e1aa4a2c5ac87008f7094df203f955f850 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#! /bin/bash

branch=master
tag_old=v2.3.0
tag=v2.3.1

sdir=`dirname $0`
thisdir=`pwd`

. $sdir/funcs_git.sh

for i in gluegen jcpp joal joal-demos jogl oculusvr-sdk 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