Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/cli/src/legacy/commands/link/link.command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const config = {
Flag.optional,
),
password: Flag.string("password").pipe(
Flag.withAlias("p"),
Flag.withDescription("Password to your remote Postgres database."),
Flag.optional,
),
Expand Down
2 changes: 1 addition & 1 deletion apps/cli/src/shared/telemetry/runtime.layer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const telemetryRuntimeLayer = Layer.effect(
if (config === null && isTty) {
yield* Effect.sync(() =>
note(
"Supabase collects anonymous usage data to improve the CLI.\nYou can opt out at any time:\n\n supabase telemetry disable\n\nLearn more: https://supabase.com/docs/cli/telemetry",
"Supabase collects anonymous usage data to improve the CLI.\nYou can opt out at any time:\n\n supabase telemetry disable\n\nLearn more: https://supabase.com/docs/guides/local-development/cli/getting-started#telemetry",
"Telemetry",
),
);
Expand Down
Loading