Skip to content

Commit 469eda1

Browse files
Merge pull request #56 from firecrawl/agent-workflows
Agent workflows
2 parents 0665d87 + db32865 commit 469eda1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "firecrawl-cli",
3-
"version": "1.9.6",
3+
"version": "1.9.7",
44
"description": "Command-line interface for Firecrawl. Scrape, crawl, and extract data from any website directly from your terminal.",
55
"main": "dist/index.js",
66
"bin": {

src/commands/init.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -512,8 +512,8 @@ export async function handleInitCommand(
512512
console.log(` ${orange}🔥 ${bold}firecrawl${reset} ${dim}init${reset}`);
513513
console.log('');
514514

515-
// Non-interactive mode (--yes skips all prompts)
516-
if (options.yes) {
515+
// Non-interactive mode (--yes or --all skips all prompts)
516+
if (options.yes || options.all) {
517517
await runNonInteractive(options);
518518
return;
519519
}

0 commit comments

Comments
 (0)