-
Notifications
You must be signed in to change notification settings - Fork 0
/
_refresh.sh
36 lines (31 loc) · 1006 Bytes
/
_refresh.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/bash
#DO NOT EDIT WITH WINDOWS
tooling_jar=tooling-1.2.0-SNAPSHOT-jar-with-dependencies.jar
input_cache_path=./input-cache
resources_path=$PWD/input/resources
ig_resource_path=./input/opioid-cds.xml
set -e
echo Checking internet connection...
wget -q --spider tx.fhir.org
if [ $? -eq 0 ]; then
echo "Online"
fsoption=""
#"-fs http://cds-sandbox.alphora.com/cqf-ruler-r4/fhir/"
else
echo "Offline"
fsoption=""
fi
echo "$fsoption"
tooling=$input_cache_path/$tooling_jar
if test -f "$tooling"; then
JAVA -jar $tooling -RefreshIG -ip="$PWD" -igrp="$ig_resource_path" -rp="$resources_path" -iv=fhir4 -t -d -p $fsoption
else
tooling=../$tooling_jar
echo $tooling
if test -f "$tooling"; then
JAVA -jar $tooling -RefreshIG -ip="$PWD" -igrp="$ig_resource_path" -rp="$resources_path" -iv=fhir4 -t -d -p $fsoption
else
echo IG Refresh NOT FOUND in input-cache or parent folder. Please run _updateCQFTooling. Aborting...
fi
fi
sh input/pagecontent/quick-start-bundles/_refreshQuickStart.sh