summaryrefslogtreecommitdiffstats
path: root/db-update
diff options
context:
space:
mode:
authorAaron Griffin <aaronmgriffin@gmail.com>2008-05-07 00:27:12 +0200
committerAaron Griffin <aaronmgriffin@gmail.com>2008-05-07 00:27:12 +0200
commit2d5b42fdd5ed2fa981c1122e040fd3974e79525e (patch)
treec5315840e222d39d653c4ba0f4c6b98ad0a6af07 /db-update
parent26b2f70e1d82f2a0e9a2127604a5bf610d37f404 (diff)
downloaddbscripts-2d5b42fdd5ed2fa981c1122e040fd3974e79525e.tar.gz
dbscripts-2d5b42fdd5ed2fa981c1122e040fd3974e79525e.tar.xz
Remove genpkglists from the dbscripts
This is silly and broken anyway. We can do this with a cron script later Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'db-update')
-rwxr-xr-xdb-update12
1 files changed, 3 insertions, 9 deletions
diff --git a/db-update b/db-update
index 1134b2d..db96704 100755
--- a/db-update
+++ b/db-update
@@ -181,15 +181,9 @@ fi
# if non empty, move all build dirs
if [ $(/bin/ls "$WORKDIR/build/" 2>/dev/null | wc -l) != 0 ]; then
+ echo "Copying new files to '$ftppath'"
/bin/cp -r "$WORKDIR/build/"* "$ftppath"
-fi
-
-if [ "$updatelists" ]; then
- echo "==> Generating Text Package List..." >&2
- cd "$WORKDIR/checkout"
- $ARCHDIR/genpkglist $ftppath $svnrepo
- if [ -f packages.txt ]; then
- mv packages.txt $ftppath/packages.txt
- fi
+else
+ echo "Nothing to copy, no work done"
fi
# vim: set ts=4 sw=4 noet ft=sh: