[READ-ONLY] Mirror of https://github.com/bombshell-dev/tools. Internal CLI to standardize tooling across all Bombshell projects
0

Configure Feed

Select the types of activity you want to include in your feed.

[ci] format

authored by

Nate Moore and committed by
bombshell-bot
(Mar 4, 2026, 4:11 AM UTC) 4d3bde25 5f439690

+2 -1
+2 -1
src/commands/init.ts
··· 7 7 export async function init(ctx: CommandContext) { 8 8 const [_name = "."] = ctx.args; 9 9 const cwdUrl = pathToFileURL(`${cwd()}/`); 10 - const name = _name === "." ? new URL("../", cwdUrl).pathname.split("/").filter(Boolean).pop()! : _name; 10 + const name = 11 + _name === "." ? new URL("../", cwdUrl).pathname.split("/").filter(Boolean).pop()! : _name; 11 12 const dest = new URL("./.temp/", cwdUrl); 12 13 for await (const line of x("pnpx", ["giget@latest", "gh:bombshell-dev/template", name])) { 13 14 console.log(line);