We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0619319 commit bd4f513Copy full SHA for bd4f513
1 file changed
src/utils/find-template.ts
@@ -24,6 +24,12 @@ export function findTemplate({
24
throw new Error(`Local template path does not exist: ${absolutePath}`)
25
}
26
27
+ // Security warning for local templates
28
+ log.warning(
29
+ 'Please install templates you trust and have verified. This feature is only intended for local development and not to clone official templates.',
30
+ )
31
+ log.info(`View official templates at: https://github.com/solana-foundation/templates`)
32
+
33
if (verbose) {
34
log.warning(`Using local template from: ${absolutePath}`)
35
0 commit comments