diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-04-08 06:47:59 +0200 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-04-08 06:47:59 +0200 |
commit | 3cfa0be926efae73e0044ae7746917d8d9d6c874 (patch) | |
tree | 51ffdf31eb39c6685ed9f7768c2c0951c7dbd0b4 /db-inc | |
parent | 3207e38d0f65b569402b1497920be2c47df2fbb1 (diff) | |
download | dbscripts-3cfa0be926efae73e0044ae7746917d8d9d6c874.tar.gz dbscripts-3cfa0be926efae73e0044ae7746917d8d9d6c874.tar.xz |
Make genpkglist work again
I somehow delete the dupe checking. This also works based on
svn repo tag, and doesn't give stupid errors if packages.txt
is missing
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'db-inc')
-rw-r--r-- | db-inc | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -173,8 +173,10 @@ fi if [ "$updatelists" ]; then echo "==> Generating Text Package List..." >&2 cd $TMPDIR/checkout - $ARCHDIR/genpkglist $ftppath $arch - mv packages.txt $ftppath/packages.txt + $ARCHDIR/genpkglist $ftppath $svnrepo + if [ -f packages.txt ]; then + mv packages.txt $ftppath/packages.txt + fi fi cleanup |