Fixed a typo in DownloadFileIfNotCached. Fixes #5519.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35734 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Matt Madia 2010-03-03 12:07:59 +00:00
parent 0181fe4b21
commit 8acc2e0854

View File

@ -105,7 +105,7 @@ function DownloadFileIfNotCached()
mkdir -p "$dir"
if [ ! -e $dir/$file ] ; then
echo "Downloading $url ..."
wget -nv -O $dir/$file $urlarst
wget -nv -O $dir/$file $url
fi
result=$?
if [ $result -gt 0 ]; then