Skip to content

Commit

Permalink
Fix wget: unrecognized option: quiet (#155)
Browse files Browse the repository at this point in the history
Fix for alpine linux with BusyBox v1.24.2:
`wget: unrecognized option: quiet`
  • Loading branch information
timothyklim authored and dwijnand committed Jul 26, 2016
1 parent 2ad1654 commit d118696
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sbt
Expand Up @@ -273,7 +273,7 @@ download_url () {
if which curl >/dev/null; then
curl --fail --silent --location "$url" --output "$jar"
elif which wget >/dev/null; then
wget --quiet -O "$jar" "$url"
wget -q -O "$jar" "$url"
fi
} && [[ -r "$jar" ]]
}
Expand Down

0 comments on commit d118696

Please sign in to comment.