Better debuggability of the CI step

This commit is contained in:
Carlo Sciolla 2019-05-06 12:04:07 +02:00
parent 7f824b6145
commit bc13bd2bfb
No known key found for this signature in database
GPG Key ID: BA5D71E6F3C580C1
1 changed files with 2 additions and 1 deletions

View File

@ -16,4 +16,5 @@ LATEST_VERSION="$(curl "${VERSIONS_URL}" | grep -oP) '(?<=<str name=\"v\">).*?(?
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}"