summaryrefslogtreecommitdiffstats
path: root/db-update
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2010-08-08 00:33:46 +0200
committerPierre Schmitz <pierre@archlinux.de>2010-08-08 00:33:46 +0200
commit23d4669b8e330d131b2f78cd5858b30a07478c8a (patch)
tree918144a3139b957445971014995d53a97bab6565 /db-update
parent0cfcc705c755eda1911a8868b2214c6a56f8e064 (diff)
downloaddbscripts-23d4669b8e330d131b2f78cd5858b30a07478c8a.tar.gz
dbscripts-23d4669b8e330d131b2f78cd5858b30a07478c8a.tar.xz
Use package pool instead of $repo/os/any dirs
Diffstat (limited to 'db-update')
-rwxr-xr-xdb-update16
1 files changed, 5 insertions, 11 deletions
diff --git a/db-update b/db-update
index f05246b..9e641d2 100755
--- a/db-update
+++ b/db-update
@@ -223,7 +223,7 @@ for current_arch in ${ARCHES[@]}; do
# if non empty, move all build dirs
if [ $(/bin/ls "$WORKDIR/build/" 2>/dev/null | wc -l) != 0 ]; then
if [ $(getpkgfiles "$WORKDIR/build/"*-$current_arch$PKGEXT 2>/dev/null | wc -l) != 0 ]; then
- echo "Copying new files to '$ftppath'"
+ echo "Copying new files to '$poolpath' and symlinking"
for f in "$WORKDIR/build/"*-$current_arch$PKGEXT; do
/bin/chmod 664 "$f" &>/dev/null
if ! /bin/cp "$f" "$poolpath/"; then
@@ -236,20 +236,14 @@ for current_arch in ${ARCHES[@]}; do
done
fi
if [ $(getpkgfiles "$WORKDIR/build/"*-any$PKGEXT 2>/dev/null | wc -l) != 0 ]; then
- echo "Copying new files to '$ftppath_any' and symlinking"
+ echo "Copying new files to '$poolpath_any' and symlinking"
for f in "$WORKDIR/build/"*-any$PKGEXT; do
/bin/chmod 664 "$f" &>/dev/null
fname="$(basename $f)"
- if [ ! -f "$poolrel_any/$fname" ]; then
- if ! /bin/cp "$f" "$poolpath_any/"; then
- die "error: failure while copying files to $poolpath_any"
- fi
- fi
- if [ ! -f "$ftppath_any/$fname" ]; then
- if ! ln -s "$poolrel_any/$fname" "$ftppath_any/$fname"; then
- die "error: failure symlinking $fname to $ftppath_any"
- fi
+ if ! /bin/cp "$f" "$poolpath_any/"; then
+ die "error: failure while copying files to $poolpath_any"
fi
+
if ! ln -s "$poolrel_any/$fname" "$ftppath/$fname"; then
die "error: failure symlinking $fname to $ftppath"
fi