From 059611f539e8193fd02eb5c45008e6bcaeef974c Mon Sep 17 00:00:00 2001 From: Richard Boase Date: Tue, 14 Oct 2025 00:04:15 +0100 Subject: [PATCH] Fix undefined repository path when using --yes flag MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The --yes flag was using an incorrect template key that didn't exist in the templates object, causing the repository cloning to fail with 'undefined' path. Fixed by using the correct template key. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- bin/bsv-app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/bsv-app.js b/bin/bsv-app.js index de487cc..57674b3 100755 --- a/bin/bsv-app.js +++ b/bin/bsv-app.js @@ -135,7 +135,7 @@ async function run() { const currentUser = os.hostname() // Use the hostname of the computer try { if (options.yes) { - template = 'Meter - A feature-packed starting point' + template = 'Meter - An intro to Wallet, sCrypt and overlays' projectName = 'bsv-app' authorName = '' } else {