-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_refresh.bat
32 lines (27 loc) · 1.12 KB
/
_refresh.bat
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
@ECHO OFF
REM SET tooling_jar=tooling-1.3.1-SNAPSHOT-jar-with-dependencies.jar
SET tooling_jar=tooling-1.4.1-SNAPSHOT-jar-with-dependencies.jar
SET input_cache_path=%~dp0input-cache
SET resources_path=%~dp0/input/resources
SET ig_ini_path=%~dp0ig.ini
ECHO Checking internet connection...
PING tx.fhir.org -n 1 -w 1000 | FINDSTR TTL && GOTO isonline
ECHO We're offline...
SET fsoption=
GOTO igpublish
:isonline
ECHO We're online, setting publish to local sandbox FHIR server
:: SET fsoption=-fs https://cqf-ruler.nhsnlink.org/fhir
:igpublish
SET JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF-8
:: -d %fsoption%
IF EXIST "%input_cache_path%\%tooling_jar%" (
ECHO running: JAVA -jar "%input_cache_path%\%tooling_jar%" -RefreshIG -ini="%ig_ini_path%" -t -d %fsoption%
JAVA -jar "%input_cache_path%\%tooling_jar%" -RefreshIG -ini="%ig_ini_path%" -t
) ELSE If exist "..\%tooling_jar%" (
ECHO running: JAVA -jar "..\%tooling_jar%" -RefreshIG -ini="%ig_ini_path%" -t
JAVA -jar "..\%tooling_jar%" -RefreshIG -ini="%ig_ini_path%" -t
) ELSE (
ECHO IG Refresh NOT FOUND in input-cache or parent folder. Please run _updateCQFTooling. Aborting...
)
PAUSE