Skip to content

Commit

Permalink
Merge pull request #51 from frogcrush/master
Browse files Browse the repository at this point in the history
Fix crash #50
  • Loading branch information
Webreaper authored Oct 8, 2024
2 parents 26b5150 + 2f38a3f commit 2f33402
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CentralisedPackageConverter/OutputExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace CentralisedPackageConverter;
public static class Output
{
public static void InfoLine(string message) => InfoLine(message, Array.Empty<object>());
public static void InfoLine(string message, params object[] args) => AnsiConsole.MarkupLine(message, args);
public static void InfoLine(string message, params object[] args) => AnsiConsole.WriteLine(message, args);

public static void ErrorLine(string message) => ErrorLine(message, Array.Empty<object>());
public static void ErrorLine(string message, params object[] args) => AnsiConsole.MarkupLineInterpolated($"[red]{string.Format(message, args)}[/]");
Expand Down

0 comments on commit 2f33402

Please sign in to comment.