Merge branch 'master' of https://github.com/hapifhir/org.hl7.fhir.core
This commit is contained in:
commit
314ca0c35c
|
@ -1,7 +1,11 @@
|
|||
# This pipeline produces a SNAPSHOT build for each of the sub modules in
|
||||
# the core library, and publishes them to ossrh.
|
||||
trigger:
|
||||
- master
|
||||
branches:
|
||||
include:
|
||||
- master
|
||||
|
||||
pr: none
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
|
|
|
@ -863,6 +863,9 @@ public class HierarchicalTableGenerator extends TranslatingUtilities {
|
|||
b.append(".png");
|
||||
String file = Utilities.path(dest, b.toString());
|
||||
if (!new File(file).exists()) {
|
||||
File newFile = new File(file);
|
||||
newFile.getParentFile().mkdirs();
|
||||
newFile.createNewFile();
|
||||
FileOutputStream stream = new FileOutputStream(file);
|
||||
genImage(indents, hasChildren, lineColor, stream);
|
||||
if (outputTracker!=null)
|
||||
|
|
Loading…
Reference in New Issue