This commit is contained in:
Grahame Grieve 2020-06-02 13:52:41 +10:00
commit 314ca0c35c
2 changed files with 36 additions and 29 deletions

View File

@ -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:

View File

@ -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)