6 lines
228 B
Bash
Executable File
6 lines
228 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
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
|
|
echo "Done"
|