actually fixed the problem this time

git-svn-id: http://projects.xennet.org/archtools/devtools/trunk@142 630f3fb4-fbd1-0310-a574-b293cca3120f
This commit is contained in:
Jason Chu 2004-07-19 05:43:20 +00:00
parent ae4713adaa
commit c75f35be50
1 changed files with 8 additions and 1 deletions

View File

@ -16,7 +16,14 @@ if [ ! -f $pkgname-$pkgver-$pkgrel.pkg.tar.gz ]; then
exit 1
fi
pkgurl=`pacman -Sp --noconfirm $pkgname | rev | cut -d ' ' -f 1 | rev`
tmp=`pacman -Sp --noconfirm $pkgname`
if [ $? -ne 0 ]; then
echo "Couldn't download previous package."
exit 1
fi
pkgurl=`echo $tmp | rev | cut -d ' ' -f 1 | rev`
oldpkg=`strip_url $pkgurl`