From ce916bfed01cc22ee7f191e5c27c798de98d3c35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iva=CC=81n=20Carrasco?= Date: Tue, 31 Aug 2021 23:16:16 +0200 Subject: [PATCH] Console output correction --- .../github/ivancarras/graphfity/plugin/task/GraphfityTask.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/com/github/ivancarras/graphfity/plugin/task/GraphfityTask.kt b/src/main/kotlin/com/github/ivancarras/graphfity/plugin/task/GraphfityTask.kt index 11b913f..bc7a8bf 100644 --- a/src/main/kotlin/com/github/ivancarras/graphfity/plugin/task/GraphfityTask.kt +++ b/src/main/kotlin/com/github/ivancarras/graphfity/plugin/task/GraphfityTask.kt @@ -81,7 +81,7 @@ abstract class GraphfityTask : DefaultTask() { if (exitValue() != 0) { throw RuntimeException(errorStream.toString()) } else { - println("Project module dependency graph created at ${dotFile.parentFile.absolutePath}.png") + println("Project module dependency graph created at ${dotFile.path}.png") } } }