diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-04-08 18:22:18 +0200 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-04-08 19:16:50 +0200 |
commit | ab088d5af41a216768becd35dc4f9b84400d4afa (patch) | |
tree | 09c64296a57708fed88e46007929b0ebe4e4e50c /db-inc | |
parent | 8a92487774b8d15be627f230a4f8d864cfcc9b8d (diff) | |
download | dbscripts-ab088d5af41a216768becd35dc4f9b84400d4afa.tar.gz dbscripts-ab088d5af41a216768becd35dc4f9b84400d4afa.tar.xz |
Remove 'svndir' usage
This was a holdover from the CVS scripts used to import
and existing checkout
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'db-inc')
-rw-r--r-- | db-inc | 17 |
1 files changed, 6 insertions, 11 deletions
@@ -83,17 +83,12 @@ cd $TMPDIR # Checkout the SVN module if we need to updatelists= if [ "`ls $stagedir/add 2>/dev/null`" -o "`ls $stagedir/del 2>/dev/null`" ]; then - # if $svndir is set, then use that instead of doing our own cvs checkout - if [ "$svndir" ]; then - mv $svndir $TMPDIR/checkout - else - echo "==> Checking out repo: $svnrepo ($arch) - Please be patient" - svn export -q file://$svnpath $TMPDIR/checkout - if [ $? -gt 0 ]; then - die "==> SVN export failed!" - fi - fi - updatelists=1 + echo "==> Checking out repo: $svnrepo ($arch) - Please be patient" + svn export -q file://$svnpath $TMPDIR/checkout + if [ $? -gt 0 ]; then + die "==> SVN export failed!" + fi + updatelists=1 else echo "No files to process" cleanup 0 |