Added possibility to use jar in parent folder besides input-cache; offline publishing option;

This commit is contained in:
José Costa Teixeira
2019-12-18 00:10:18 +01:00
parent 86f9933950
commit ed314ded7b
4 changed files with 145 additions and 9 deletions

View File

@@ -3,7 +3,33 @@ set -e
if ! type "curl" > /dev/null; then
echo "ERROR: Script needs curl to download latest IG Publisher. Please install curl."
exit 1
publisher=./input-cache/org.hl7.fhir.publisher.jar
if test -f "$publisher"; then
jarlocation="./input-cache/org.hl7.fhir.publisher.jar"
echo "IG Publisher FOUND in input-cache"
else
publisher=../org.hl7.fhir.publisher.jar
upgrade=true
if test -f "$publisher"; then
echo "IG Publisher FOUND in parent folder"
jarlocation="../org.hl7.fhir.publisher.jar"
upgrade=true
else
echo IG Publisher NOT FOUND in input-cache or parent folder...
jarlocation="./input-cache/org.hl7.fhir.publisher.jar"
upgrade=true
fi
fi
if $upgrade ; then
read -r -p "Download? [y/N] " response
if [[ "$response" =~ ^([yY][eE][sS]|[yY])$ ]]
then
echo "Downloading most recent publisher to $jarlocation - it's ~100 MB, so this may take a bit"
# wget "https://fhir.github.io/latest-ig-publisher/org.hl7.fhir.publisher.jar" -O "$jarlocation"
curl https://fhir.github.io/latest-ig-publisher/org.hl7.fhir.publisher.jar -o "$jarlocation" --create-dirs
else
echo cancel...
fi
fi
echo "Downloading most recent publisher - it's ~100 MB, so this may take a bit"
curl https://fhir.github.io/latest-ig-publisher/org.hl7.fhir.publisher.jar -o input-cache/org.hl7.fhir.publisher.jar --create-dirs
echo "Done"