Make install script work on MacOS

This commit is contained in:
Joost Diepenmaat 2019-09-24 18:18:41 +02:00
parent cc125c9f75
commit cb8914947e
No known key found for this signature in database
GPG Key ID: C945FE6EED8A098C
1 changed files with 7 additions and 2 deletions

View File

@ -1,7 +1,12 @@
#!/bin/sh
realpath() {
[[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"
}
# Where the script is executed
CURRENT_PATH="$(dirname "$(readlink -f "$0")")"
CURRENT_PATH="$(dirname "$(realpath "$0")")"
# Where to download the file
OUTPUT_PATH="${CURRENT_PATH}/plantuml.jar"
@ -10,7 +15,7 @@ OUTPUT_PATH="${CURRENT_PATH}/plantuml.jar"
VERSIONS_URL='https://search.maven.org/solrsearch/select?q=g:net.sourceforge.plantuml+AND+a:plantuml&core=gav&start=0&rows=1&wt=xml'
# Only match the contents of the version (name="v") XML tag
LATEST_VERSION="$(curl -s "${VERSIONS_URL}" | grep -oP '(?<=<str name="v">).*(?=</str>)')"
LATEST_VERSION="$(curl -s "${VERSIONS_URL}" | grep '<str name="v">'| sed 's/.*<str name="v">//g'|sed 's/<\/str>.*//')"
# Compose the download link
DOWNLOAD_URL="https://search.maven.org/remotecontent?filepath=net/sourceforge/plantuml/plantuml/${LATEST_VERSION}/plantuml-${LATEST_VERSION}.jar"