From 42454fd0ff6afb520506c9b15f0fd25606d12008 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Thu, 18 Feb 2016 06:46:20 -0800 Subject: [PATCH] Template instructions. --- src/main/kotlin/com/beust/kobalt/app/ProjectGenerator.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/com/beust/kobalt/app/ProjectGenerator.kt b/src/main/kotlin/com/beust/kobalt/app/ProjectGenerator.kt index 0976822a..8531d087 100644 --- a/src/main/kotlin/com/beust/kobalt/app/ProjectGenerator.kt +++ b/src/main/kotlin/com/beust/kobalt/app/ProjectGenerator.kt @@ -26,7 +26,8 @@ class ProjectGenerator @Inject constructor(val pluginInfo: PluginInfo){ if (template != null) { log(2, "Running template $templateName") template.generateTemplate(args, classLoader) - log(1, "\n\n" + template.instructions) + log(1, "\n\nTemplate \"$templateName\" installed") + log(1, template.instructions) } else { warn("Couldn't find any template named $templateName") }