Skip to content

Commit

Permalink
fixes issue #298 (#301)
Browse files Browse the repository at this point in the history
* fixes issue #298

* Delete src/neoxp/Properties/launchSettings.json
  • Loading branch information
cschuchardt88 committed Nov 6, 2023
1 parent a07ab64 commit 5dd335e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/neoxp/Program.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System.IO.Abstractions;
using System.Runtime.InteropServices;
using McMaster.Extensions.CommandLineUtils;
using McMaster.Extensions.CommandLineUtils;
using Microsoft.Extensions.DependencyInjection;
using NeoExpress.Commands;
using System.IO.Abstractions;
using System.Runtime.InteropServices;

namespace NeoExpress
{
Expand Down Expand Up @@ -48,7 +48,7 @@ public static async Task<int> Main(string[] args)
}
catch (CommandParsingException ex)
{
await Console.Error.WriteLineAsync($"\x1b[1m\x1b[31m\x1b[40m{ex.Message}");
await Console.Error.WriteLineAsync($"\x1b[1m\x1b[31m\x1b[40m{ex.Message}\x1b[0m");

if (ex is UnrecognizedCommandParsingException uex && uex.NearestMatches.Any())
{
Expand Down

0 comments on commit 5dd335e

Please sign in to comment.