aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorYuuta Liang <yuutaw@student.cs.ubc.ca>2023-11-28 21:03:25 -0800
committerYuuta Liang <yuutaw@student.cs.ubc.ca>2023-11-28 21:03:25 -0800
commit2a9c2e3abf57a5d92e311c07679ff62be7275f02 (patch)
tree5892387ca5daaa35f779275403e1751ef828b31e /build.gradle
parentc992db275494b05627248cd741adac5d7c199603 (diff)
downloadjca-2a9c2e3abf57a5d92e311c07679ff62be7275f02.tar
jca-2a9c2e3abf57a5d92e311c07679ff62be7275f02.tar.gz
jca-2a9c2e3abf57a5d92e311c07679ff62be7275f02.tar.bz2
jca-2a9c2e3abf57a5d92e311c07679ff62be7275f02.zip
Fix path
Signed-off-by: Yuuta Liang <yuutaw@student.cs.ubc.ca>
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle2
1 files changed, 1 insertions, 1 deletions
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