diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-05-06 18:27:12 -0400 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-05-06 18:27:12 -0400 |
commit | 2d5b42fdd5ed2fa981c1122e040fd3974e79525e (patch) | |
tree | c5315840e222d39d653c4ba0f4c6b98ad0a6af07 /db-update | |
parent | 26b2f70e1d82f2a0e9a2127604a5bf610d37f404 (diff) |
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-x | db-update | 12 |
1 files changed, 3 insertions, 9 deletions
@@ -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: |