Skip to content

Commit

Permalink
fix telemetry notice
Browse files Browse the repository at this point in the history
  • Loading branch information
0xF6 committed Aug 18, 2024
1 parent af675d7 commit a937b2a
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions tools/rune-cli/cmd/TelemetryCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@ public class TelemetryCommand : Command
{
public override int Execute(CommandContext context)
{
AnsiConsole.Write(new Rule($"[blue bold]Vein Telemetry[/]") { Style = Style.Parse("lime rapidblink") });
AnsiConsole.MarkupLine($"The [blue bold]VeinSDK[/] tools collect usage data in order to help us improve your experience.");
AnsiConsole.MarkupLine($"You [red bold]cannot disable[/] telemetry before the [blue bold]1.0[/] release.");
AnsiConsole.Write(new Rule { Style = Style.Parse("lime rapidblink") });
AnsiConsole.Write(new Rule($"[red bold]Telemetry Notice[/]") { Style = Style.Parse("orange rapidblink") });
AnsiConsole.MarkupLine($"");
AnsiConsole.MarkupLine($"\tThe [blue bold]VeinSDK[/] tools collect usage data in order to help us improve your experience.");
AnsiConsole.MarkupLine($"\tYou [red bold]cannot disable[/] telemetry before the [blue bold]1.0[/] release.");
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");
AnsiConsole.MarkupLine($"");
AnsiConsole.Write(new Rule { Style = Style.Parse("orange rapidblink") });
return 0;
}
}

0 comments on commit a937b2a

Please sign in to comment.