Improve helper text when inititializing email theme

This commit is contained in:
Joseph Garrone 2024-05-18 04:37:19 +02:00
parent 7fc6f7a7ae
commit 067e148897

View File

@ -56,7 +56,8 @@ export async function command(params: { cliCommandOptions: CliCommandOptions })
fs.writeFileSync(themePropertyFilePath, Buffer.from(`parent=base\n${fs.readFileSync(themePropertyFilePath).toString("utf8")}`, "utf8"));
}
logger.log(`${pathRelative(process.cwd(), emailThemeSrcDirPath)} ready to be customized, feel free to remove every file you do not customize`);
logger.log(`The \`${pathJoin(".", pathRelative(process.cwd(), emailThemeSrcDirPath))}\` directory have been created`);
logger.log("You can delete any file you don't modify.");
rmSync(builtinKeycloakThemeTmpDirPath, { "recursive": true });
}