From b5858c24bdaaeb03765744aa030941c51cffef3c Mon Sep 17 00:00:00 2001 From: Christofer Dutz Date: Wed, 19 Jul 2017 11:34:19 +0200 Subject: [PATCH] - Changed the wget command to use "-O" instead of "--output-document=" --- maven-wrapper/mvnw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maven-wrapper/mvnw b/maven-wrapper/mvnw index 82fe04cd4a..b16e3813a2 100755 --- a/maven-wrapper/mvnw +++ b/maven-wrapper/mvnw @@ -211,7 +211,7 @@ else echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..." if command -v wget > /dev/null; then echo "Found wget ... using wget" - wget ‐‐output-document=.mvn/wrapper/maven-wrapper.jar "$JAR_URL" + wget ‐O .mvn/wrapper/maven-wrapper.jar "$JAR_URL" elif command -v curl > /dev/null; then echo "Found curl ... using curl" curl -o .mvn/wrapper/maven-wrapper.jar "$JAR_URL"