From: Roland Häder Date: Thu, 20 Nov 2008 01:21:16 +0000 (+0000) Subject: Updated script X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=3db3f581838be722f23a5de3525579aa4801e3b7 Updated script --- diff --git a/setup-repos.sh b/setup-repos.sh index 02c3e4ba..68f6a832 100755 --- a/setup-repos.sh +++ b/setup-repos.sh @@ -1,8 +1,14 @@ #!/bin/sh # A little helper script of mine to setup a new development check-out directory -svn co svn+ssh://www.mxchange.org/var/www/svn-repos/blog/ -cd blog +if test "$1" == ""; then + echo "Usage: $0 Setup given repository locally." + exit +fi + +svn co svn+ssh://www.mxchange.org/var/www/svn-repos/$1/ +cd $1 svn mkdir branches tags trunk svn propset -F ../core/trunk/svn-externals.txt trunk svn commit -m "Initial import with linked core" +cd