Skip to content

Commit a937b2a

Browse files
committed
fix telemetry notice
1 parent af675d7 commit a937b2a

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

tools/rune-cli/cmd/TelemetryCommand.cs

+7-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,13 @@ public class TelemetryCommand : Command
77
{
88
public override int Execute(CommandContext context)
99
{
10-
AnsiConsole.Write(new Rule($"[blue bold]Vein Telemetry[/]") { Style = Style.Parse("lime rapidblink") });
11-
AnsiConsole.MarkupLine($"The [blue bold]VeinSDK[/] tools collect usage data in order to help us improve your experience.");
12-
AnsiConsole.MarkupLine($"You [red bold]cannot disable[/] telemetry before the [blue bold]1.0[/] release.");
13-
AnsiConsole.Write(new Rule { Style = Style.Parse("lime rapidblink") });
10+
AnsiConsole.Write(new Rule($"[red bold]Telemetry Notice[/]") { Style = Style.Parse("orange rapidblink") });
11+
AnsiConsole.MarkupLine($"");
12+
AnsiConsole.MarkupLine($"\tThe [blue bold]VeinSDK[/] tools collect usage data in order to help us improve your experience.");
13+
AnsiConsole.MarkupLine($"\tYou [red bold]cannot disable[/] telemetry before the [blue bold]1.0[/] release.");
14+
AnsiConsole.MarkupLine($"\tIf you [red bold]do not agree[/] with this notification, [red bold]stop[/] the installation and [red bold]delete[/] the [gray bold]~/.vein[/] folder");
15+
AnsiConsole.MarkupLine($"");
16+
AnsiConsole.Write(new Rule { Style = Style.Parse("orange rapidblink") });
1417
return 0;
1518
}
1619
}

0 commit comments

Comments
 (0)