From 8136e66b756c584c54e3bb830b378e63570745eb Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Sun, 15 Feb 2026 21:47:47 +0800 Subject: [PATCH] updates --- bundles/create-java-project.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bundles/create-java-project.ts b/bundles/create-java-project.ts index 9f6ed59..9e07416 100644 --- a/bundles/create-java-project.ts +++ b/bundles/create-java-project.ts @@ -47,6 +47,7 @@ const SCRIPT_URL_PREFIX = "https://script.hatter.ink/@latest/"; // build.json | build_springboot_template.gradle | build_jar_template.gradle async function writeGitIgnore(): Promise { + log.info(`Write file: ${DOT_GIT_IGNORE}`); await writeStringToFile( DOT_GIT_IGNORE, DEFAULT_GIT_IGNORE.join("\n") + "\n", @@ -55,6 +56,7 @@ async function writeGitIgnore(): Promise { async function createDirs(): Promise { for (const dir of DIRS) { + log.info(`Create directory: ${dir}`); await makeDirectory(dir); } }