Skip to content

Commit

Permalink
fix: print url
Browse files Browse the repository at this point in the history
  • Loading branch information
arybitskiy committed Nov 14, 2024
1 parent 27a0b26 commit 8f3b6a1
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions apps/cli/src/utils/open.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@ import openOriginal from "open";

export async function open(url: string, printer: Printer) {
try {
printer.printOperationMessage({
kind: "status",
message: `Opening the following URL in your browser: ${url}\n`,
});
console.log(`Opening the following URL in your browser: ${url}\n`);
return await openOriginal(url);
} catch (error: any) {
printer.printOperationMessage({
Expand Down

0 comments on commit 8f3b6a1

Please sign in to comment.