Added continuous scripts, incorporated Eric's ignore stuff

This commit is contained in:
Lloyd McKenzie
2019-12-19 09:36:13 -07:00
parent e3543cd084
commit abdedb571d
8 changed files with 46363 additions and 47182 deletions

View File

@@ -17,11 +17,11 @@ SET txoption=
SET JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF-8
IF EXIST "%input_cache_path%\%publisher_jar%" (
JAVA -jar input-cache/org.hl7.fhir.publisher.jar -ig ig.ini %txoption%
JAVA -jar %input_cache_path%\%publisher_jar% -ig ig.ini %txoption% %*
) ELSE If exist "..\%publisher_jar%" (
JAVA -jar ../%publisher_jar% -ig ig.ini %txoption%
JAVA -jar ..\%publisher_jar% -ig ig.ini %txoption% %*
) ELSE (
ECHO IG Publisher NOT FOUND in input-cache or parent folder... aborting
ECHO IG Publisher NOT FOUND in input-cache or parent folder. Please run _updatePublisher. Aborting...
)
PAUSE