Even more fixes...
authorRoland Häder <roland@mxchange.org>
Thu, 20 Nov 2008 05:19:39 +0000 (05:19 +0000)
committerRoland Häder <roland@mxchange.org>
Thu, 20 Nov 2008 05:19:39 +0000 (05:19 +0000)
setup-repos.sh

index 1fc49e5ace80371951960c9bd669f9d1dce07930..ad263a37b15ca9a36509c04480f0af9e7221bf1f 100755 (executable)
@@ -17,10 +17,21 @@ svn up ../../skel/ || exit 255
 echo "$0: Importing skeleton repository ..."
 svn export --force ../../skel/trunk/ . || exit 255
 sh `which svn-add-all.sh`
 echo "$0: Importing skeleton repository ..."
 svn export --force ../../skel/trunk/ . || exit 255
 sh `which svn-add-all.sh`
-echo "$0: Adding directory application/$1 ..."
-svn mkdir application/$1 || exit 255
+if test "$1" != "admin"; then
+       echo "$0: Adding directory application/$1 ..."
+       svn mkdir application/$1 || exit 255
+else
+       echo "$0: --- Not creating directory application/$1. ---"
+fi
 echo "$0: Linking to external 'core' repository ..."
 svn propset svn:externals -F ../../core/trunk/svn-externals.txt . || exit 255
 echo "$0: Linking to external 'core' repository ..."
 svn propset svn:externals -F ../../core/trunk/svn-externals.txt . || exit 255
+if test "$1" != "admin"; then
+       cd application/
+       svn propset svn:externals "admin http://www.ship-simu.org/repos/admin/trunk/application/admin/" . || exit 255
+       cd .. # trunk
+else
+       echo "$0: --- Not setting admin external source. ---"
+fi
 cd .. # root
 echo "$0: Running commit ..."
 svn commit -m "Initial import with linked core from skeleton" || exit 255
 cd .. # root
 echo "$0: Running commit ..."
 svn commit -m "Initial import with linked core from skeleton" || exit 255