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

21
.gitignore vendored
View File

@ -1,5 +1,22 @@
/input/images/Thumbs.db # Temporary folders #
/input-cache/org.hl7.fhir.publisher.jar #####################
temp temp
template template
output output
# Don't commit this because it's so large #
###########################################
/input-cache/org.hl7.fhir.publisher.jar
# Windows generated files #
###########################
Thumbs.db
# OS generated files #
######################
.DS_Store
.DS_Store?
# backup files #
################
*.bak

2
_gencontinuous.bat Normal file
View File

@ -0,0 +1,2 @@
@ECHO OFF
CALL _genonce.bat -watch

2
_gencontinuous.sh Normal file
View File

@ -0,0 +1,2 @@
#!/bin/bash
_genonce.sh -watch

View File

@ -17,11 +17,11 @@ SET txoption=
SET JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF-8 SET JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF-8
IF EXIST "%input_cache_path%\%publisher_jar%" ( 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%" ( ) ELSE If exist "..\%publisher_jar%" (
JAVA -jar ../%publisher_jar% -ig ig.ini %txoption% JAVA -jar ..\%publisher_jar% -ig ig.ini %txoption% %*
) ELSE ( ) 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 PAUSE

View File

@ -17,13 +17,13 @@ echo "$txoption"
publisher=$input_cache_path/$publisher_jar publisher=$input_cache_path/$publisher_jar
if test -f "$publisher"; then if test -f "$publisher"; then
JAVA -jar $publisher -ig ig.ini $txoption JAVA -jar $publisher -ig ig.ini $txoption $*
else else
publisher=../$publisher_jar publisher=../$publisher_jar
if test -f "$publisher"; then if test -f "$publisher"; then
JAVA -jar $publisher -ig ig.ini $txoption JAVA -jar $publisher -ig ig.ini $txoption $*
else 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...
fi fi
fi fi

File diff suppressed because it is too large Load Diff

View File

@ -26,7 +26,7 @@
v: { v: {
"display" : "", "display" : "",
"severity" : "error", "severity" : "error",
"error" : "Not done yet @ TAreaCodeServices.Close" "error" : "Unknown code system urn:iso:std:iso:3166:-2"
} }
------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------
{"code" : { {"code" : {

View File

@ -1 +1 @@
1.0.287 1.0.304