diff options
Diffstat (limited to 'git/git-forallrepos-push.sh')
-rwxr-xr-x | git/git-forallrepos-push.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/git/git-forallrepos-push.sh b/git/git-forallrepos-push.sh index cf9b9b6..09c56bf 100755 --- a/git/git-forallrepos-push.sh +++ b/git/git-forallrepos-push.sh @@ -1,10 +1,12 @@ #! /bin/bash +sdir=`dirname $0` + for i in gluegen jcpp joal joal-demos jogl oculusvr-sdk jogl-demos jocl jocl-demos ; do cd $i echo echo MODULE $i echo - git-jogl-push.sh $* + . $sdir/git-jogamp-push.sh $* cd .. done |