forked from WorldHealthOrganization/smart-anc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_refresh.sh
32 lines (28 loc) · 789 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
#!/bin/bash
#DO NOT EDIT WITH WINDOWS
tooling_jar=tooling-1.4.1-SNAPSHOT-jar-with-dependencies.jar
input_cache_path=./input-cache
ig_ini_path=$PWD/ig.ini
set -e
echo Checking internet connection...
wget -q --spider tx.fhir.org
if [ $? -eq 0 ]; then
echo "Online"
fsoption="-fs https://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 -ini="$ig_ini_path" -d -p -t $fsoption
else
tooling=../$tooling_jar
echo $tooling
if test -f "$tooling"; then
java -jar $tooling -RefreshIG -ini="$ig_ini_path" -d -p -t $fsoption
else
echo IG Refresh NOT FOUND in input-cache or parent folder. Please run _updateCQFTooling. Aborting...
fi
fi