wget doesn't accept -O after url under cygwin

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162596 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Emmanuel Venisse 2004-03-10 00:01:48 +00:00
parent 61598c029e
commit 6fe6937fa8
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ downloadMBootDependencies()
if [ "$snapshot" = "0" ] || [ ! -f $repoLocal/$i ]
then
mkdir -p `dirname $repoLocal/$i` > /dev/null 2>&1
wget http://www.ibiblio.org/maven/$i -O $repoLocal/$i
wget -O $repoLocal/$i http://www.ibiblio.org/maven/$i
fi
done
}