File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ Each asset has a sibling `.sha256` for verification.
4242git clone https://github.com/lordvins226/quoteforge
4343cd quoteforge
4444bun install
45- bun quoteforge --version
45+ bun run quoteforge --version
4646```
4747
4848## Verify
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments