Skip to content

Commit 43d299f

Browse files
committed
fix(quoteforge[cli]): drop bun prefix from CLI hints and source-install snippet
1 parent 403af4e commit 43d299f

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

site/src/docs/getting-started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Each asset has a sibling `.sha256` for verification.
4242
git clone https://github.com/lordvins226/quoteforge
4343
cd quoteforge
4444
bun install
45-
bun quoteforge --version
45+
bun run quoteforge --version
4646
```
4747

4848
## Verify

src/cli/commands/batch.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const batchCommand = new Command("batch")
2929

3030
if (files.length === 0) {
3131
console.error(chalk.red(`✗ No JSON files found in: ${dir}`));
32-
console.error(chalk.dim(" Check the path or try: bun quoteforge batch content/examples/"));
32+
console.error(chalk.dim(" Check the path or try: quoteforge batch content/examples/"));
3333
process.exit(1);
3434
}
3535

src/cli/commands/generate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const generateCommand = new Command("generate")
4646
const result = detectAndValidate(json);
4747
if (result.kind !== "card") {
4848
console.error(chalk.red("✗ This file is a deck, not a single card."));
49-
console.error(chalk.dim(` Try: bun quoteforge slides ${file}`));
49+
console.error(chalk.dim(` Try: quoteforge slides ${file}`));
5050
process.exit(1);
5151
}
5252

src/cli/commands/slides.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export const slidesCommand = new Command("slides")
5050
const result = detectAndValidate(json);
5151
if (result.kind !== "deck") {
5252
console.error(chalk.red("✗ This file is a single card, not a deck."));
53-
console.error(chalk.dim(` Try: bun quoteforge generate ${file}`));
53+
console.error(chalk.dim(` Try: quoteforge generate ${file}`));
5454
process.exit(1);
5555
}
5656

0 commit comments

Comments
 (0)