summaryrefslogtreecommitdiff
path: root/librerelease
diff options
context:
space:
mode:
authorNicolás Reynolds <apoyosis@correo.inta.gob.ar>2010-11-04 13:04:47 -0300
committerNicolás Reynolds <apoyosis@correo.inta.gob.ar>2010-11-04 13:04:47 -0300
commit90fd2556f0905fc370ebc3823afca21be2387b0b (patch)
tree54f39a302e6556be5184d28bbc4162186a86502e /librerelease
parent133a65ceff1acd173c08dadb9cfc88d743041f0a (diff)
libremakepkg fix
librerelease fixed moving old packages
Diffstat (limited to 'librerelease')
-rwxr-xr-xlibrerelease6
1 files changed, 2 insertions, 4 deletions
diff --git a/librerelease b/librerelease
index c6ceb14..8b8f5c8 100755
--- a/librerelease
+++ b/librerelease
@@ -61,18 +61,16 @@ if [ -e ~/.makepkg.conf ]; then source ~/.makepkg.conf; fi
PKGDEST=${PKGDEST:-.}
SRCPKGDEST=${SRCPKGDEST:-.}
-
# Init the batchfile
to_sftp "progress"
-# Move out the old packages
-
for _arch in ${arch[@]}; do
for pkg in ${pkgname[@]}; do
pkgfile="$PKGDEST/$pkg-$pkgver-$pkgrel-$_arch$PKGEXT"
if [ -e "$pkgfile" ]; then
+# Move out the old packages
# This has to be moved to repo-maintainer
- ssh parabola mv ${PARABOLAHOST}/$repo/os/$_arch/$pkg-*-*-$_arch$PKGEXT ${LIBREDESTDIR}/old/
+ ssh ${PARABOLAHOST} mv ${LIBREDESTDIR}/$repo/os/$_arch/$pkg-*-*-$_arch$PKGEXT ${LIBREDESTDIR}/old/
to_sftp "put $pkgfile ${LIBREDESTDIR}/$repo/os/$_arch/"
fi