From 9ad5e247d44c4af214f52d123a453794f16e3980 Mon Sep 17 00:00:00 2001 From: jsseidel Date: Wed, 14 Aug 2019 13:31:36 -0400 Subject: [PATCH] Fix for issue #28 --- bin/mktechdocs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/mktechdocs b/bin/mktechdocs index 1e69af1..ad0b4dd 100755 --- a/bin/mktechdocs +++ b/bin/mktechdocs @@ -193,6 +193,10 @@ function cleanup { rm -f plantuml-*.uml plantuml-*.eps plantuml-*.svg $OUTPUT_FILE_NAME_BASE_ARG.pyt $OUTPUT_FILE_NAME_BASE_ARG.tex $OUTPUT_FILE_NAME_BASE_ARG.aux $OUTPUT_FILE_NAME_BASE_ARG.log $OUTPUT_FILE_NAME_BASE_ARG.toc $OUTPUT_FILE_NAME_BASE_ARG.out xelatex*.out $$.pre-build.out $$.pre-build.err $$.post-build.out $$.post-build.err missfont.log + # This is created by java when mktechdocs is run via docker because it cannot determine a home directory. + # We can safely remove it. + rm -rf ./\? + find . -type f | grep "\.pyt$" | sed 's/\.pyt$//' | while read template ; do rm -f $template.md done