From 2a9c2e3abf57a5d92e311c07679ff62be7275f02 Mon Sep 17 00:00:00 2001 From: Yuuta Liang Date: Tue, 28 Nov 2023 21:03:25 -0800 Subject: Fix path Signed-off-by: Yuuta Liang --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 1d42616..56ba1c4 100644 --- a/build.gradle +++ b/build.gradle @@ -97,7 +97,7 @@ ext.renderUML = { scope -> def dot = output.toByteArray() out.close() def input = new ByteArrayInputStream(dot) - output = new FileOutputStream("${rootDir}/arts/uml.${scope}.pdf") + output = new FileOutputStream("${rootDir}/img/uml.${scope}.pdf") exec { commandLine 'dot', '-Tpdf' standardInput = input -- cgit v1.2.3