switched the upgradescript wget -> curl
This commit is contained in:
parent
debef4f74a
commit
91a388b08a
@ -1,9 +1,9 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
if ! type "wget" > /dev/null; then
|
if ! type "curl" > /dev/null; then
|
||||||
echo "ERROR: Script needs wget to download latest IG Publisher. Please install wget."
|
echo "ERROR: Script needs curl to download latest IG Publisher. Please install curl."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
echo "Downloading most recent publisher - it's ~100 MB, so this may take a bit"
|
echo "Downloading most recent publisher - it's ~100 MB, so this may take a bit"
|
||||||
wget https://fhir.github.io/latest-ig-publisher/org.hl7.fhir.publisher.jar -O input-cache/org.hl7.fhir.publisher.jar
|
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"
|
echo "Done"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user