Use full filename for scp upload

Fix an issue where a missing add directory causes the package to be uploaded as
a file named "add"

Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
This commit is contained in:
Aaron Griffin 2007-11-29 00:36:31 -06:00
parent bc8a791ad6
commit 59d373a62b
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ if [ "$1" = "-l" ]; then
fi
if [ "$repo" != "community" ]; then
scp ${scpopts} ${pkgfile} archlinux.org:staging/$repo/add
scp ${scpopts} ${pkgfile} archlinux.org:staging/$repo/add/${pkgfile}
if [ "$(md5sum ${pkgfile} | cut -d' ' -f1)" != "$(ssh archlinux.org md5sum staging/${repo}/add/$(basename ${pkgfile}) | cut -d' ' -f1)" ]; then
echo "File got corrupted during upload, cancelled."
exit 1