Skip to content

Commit 935d8b8

Browse files
authored
Merge pull request #58 from AlexGhiondea/FixErrorMessage
Remove the coloring from the message as it won't correctly show up.
2 parents 8c464aa + a470784 commit 935d8b8

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/CommandLine.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
</PropertyGroup>
88

99
<PropertyGroup>
10-
<AssemblyVersion>2.1.1</AssemblyVersion>
10+
<AssemblyVersion>2.1.2</AssemblyVersion>
1111
<FileVersion>$(AssemblyVersion)</FileVersion>
12-
<VersionPrefix>2.1.1</VersionPrefix>
12+
<VersionPrefix>2.1.2</VersionPrefix>
1313
</PropertyGroup>
1414

1515
<PropertyGroup>

src/Parser.Internal.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ private static IEnumerable<string> SplitCommandLineIntoSegments(string line)
141141
// parse based on the command passed in (the first arg).
142142
if (!arguments.ArgumentGroups.ContainsKey(args[0]))
143143
{
144-
throw new ArgumentException($"Unknown command [Cyan!{args[0]}]");
144+
throw new ArgumentException($"Unknown command '{args[0]}'");
145145
}
146146

147147
// short circuit the request for help!

0 commit comments

Comments
 (0)