Merge pull request #6 from retronym/master

wget command line fix
This commit is contained in:
Paul Phillips 2011-10-03 09:19:49 -07:00
commit 0888ac2490
1 changed files with 1 additions and 1 deletions

2
sbt
View File

@ -176,7 +176,7 @@ download_url () {
if which curl >/dev/null; then
curl --silent "$url" --output "$jar"
elif which wget >/dev/null; then
wget --quiet "$url" > "$jar"
wget --quiet -O "$jar" "$url"
fi
} && [[ -f "$jar" ]]
}