Added continuous scripts, incorporated Eric's ignore stuff
This commit is contained in:
parent
e3543cd084
commit
abdedb571d
21
.gitignore
vendored
21
.gitignore
vendored
@ -1,5 +1,22 @@
|
||||
/input/images/Thumbs.db
|
||||
/input-cache/org.hl7.fhir.publisher.jar
|
||||
# Temporary folders #
|
||||
#####################
|
||||
temp
|
||||
template
|
||||
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
2
_gencontinuous.bat
Normal file
@ -0,0 +1,2 @@
|
||||
@ECHO OFF
|
||||
CALL _genonce.bat -watch
|
||||
2
_gencontinuous.sh
Normal file
2
_gencontinuous.sh
Normal file
@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
_genonce.sh -watch
|
||||
@ -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
|
||||
@ -17,13 +17,13 @@ echo "$txoption"
|
||||
|
||||
publisher=$input_cache_path/$publisher_jar
|
||||
if test -f "$publisher"; then
|
||||
JAVA -jar $publisher -ig ig.ini $txoption
|
||||
JAVA -jar $publisher -ig ig.ini $txoption $*
|
||||
|
||||
else
|
||||
publisher=../$publisher_jar
|
||||
if test -f "$publisher"; then
|
||||
JAVA -jar $publisher -ig ig.ini $txoption
|
||||
JAVA -jar $publisher -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...
|
||||
fi
|
||||
fi
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -26,7 +26,7 @@
|
||||
v: {
|
||||
"display" : "",
|
||||
"severity" : "error",
|
||||
"error" : "Not done yet @ TAreaCodeServices.Close"
|
||||
"error" : "Unknown code system urn:iso:std:iso:3166:-2"
|
||||
}
|
||||
-------------------------------------------------------------------------------------
|
||||
{"code" : {
|
||||
|
||||
@ -1 +1 @@
|
||||
1.0.287
|
||||
1.0.304
|
||||
Loading…
Reference in New Issue
Block a user