diff options
Diffstat (limited to 'opensuse/gentarball')
-rwxr-xr-x | opensuse/gentarball | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/opensuse/gentarball b/opensuse/gentarball index 8cb8535f5..e7f491555 100755 --- a/opensuse/gentarball +++ b/opensuse/gentarball @@ -20,7 +20,10 @@ grab() #svn export svn://anonsvn.kde.org/home/kde/branches/trinity/$NAME git clone http://scm.trinitydesktop.org/scm/git/$NAME $NAME cd $NAME -git submodule update --init +if [[ -e .gitmodules ]]; then + sed -i 's/system@//g' .gitmodules + git submodule update --init +fi cd .. createTarball rm -rf $NAME |