diff options
author | Sven Gothel <[email protected]> | 2015-03-27 23:31:38 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-03-27 23:31:38 +0100 |
commit | 82ae098c156930d9875fc6aef3cb377017ea8748 (patch) | |
tree | 72679e10b2264250f3791e27b33cffe3884d0f3c /git/git-forallrepos-push.sh | |
parent | 805b179aa915d49a38cb1471bd6b539d75aea1d1 (diff) |
fix git-forallrepos-push.sh using git-jogamp-push.sh (for all jogamp projects -> all repos)
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 |