From bc13bd2bfb7fded22f8c0fe5a69ae04f016dda23 Mon Sep 17 00:00:00 2001 From: Carlo Sciolla Date: Mon, 6 May 2019 12:04:07 +0200 Subject: [PATCH] Better debuggability of the CI step --- bin/download-plantuml.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/download-plantuml.sh b/bin/download-plantuml.sh index 5798ef9..bb8244d 100644 --- a/bin/download-plantuml.sh +++ b/bin/download-plantuml.sh @@ -16,4 +16,5 @@ LATEST_VERSION="$(curl "${VERSIONS_URL}" | grep -oP) '(?<=).*?(? DOWNLOAD_URL="https://search.maven.org/remotecontent?filepath=net/sourceforge/plantuml/plantuml/${LATEST_VERSION}/plantuml-${LATEST_VERSION}.jar" # finally, download the JAR file -curl -o "${OUTPUT_PATH}" "${DOWNLOAD_URL}" +echo "Downloading PlantUML v${LATEST_VERSION} into ${OUTPUT_PATH}" +curl -so "${OUTPUT_PATH}" "${DOWNLOAD_URL}"