Skip to content

Commit 8607c77

Browse files
committed
Nick: fixes
1 parent 906fc94 commit 8607c77

2 files changed

Lines changed: 2 additions & 2 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.11.0",
3+
"version": "1.11.1",
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ async function runNonInteractive(options: InitOptions): Promise<void> {
593593
console.log(`${stepLabel()} Authenticating with Firecrawl...`);
594594
try {
595595
let result: { apiKey: string; apiUrl?: string; teamName?: string };
596-
if (options.browser || !options.apiKey) {
596+
if (options.browser) {
597597
result = await browserLogin();
598598
} else {
599599
result = await interactiveLogin();

0 commit comments

Comments
 (0)