Skip to content

Commit 99901e3

Browse files
committed
Updated casing of overrideconfig argument to match project standard.
1 parent 173b366 commit 99901e3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/GitVersionExe/ArgumentParser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ public static Arguments ParseArguments(List<string> commandLineArguments)
285285
continue;
286286
}
287287

288-
if (IsSwitch("overrideConfig", name))
288+
if (IsSwitch("overrideconfig", name))
289289
{
290290
foreach (var item in value.Split(';'))
291291
{

src/GitVersionExe/HelpWriter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ path The directory containing .git. If not defined current directory
2525
eg /output json /showvariable SemVer - will output `1.2.3+beta.4`
2626
/l Path to logfile.
2727
/showconfig Outputs the effective GitVersion config (defaults + custom from GitVersion.yaml) in yaml format
28-
/overrideConfig Overrides GitVersion config values inline (semicolon-separated key value pairs e.g. /overrideConfig:tag-prefix=Foo)
28+
/overrideconfig Overrides GitVersion config values inline (semicolon-separated key value pairs e.g. /overrideConfig:tag-prefix=Foo)
2929
3030
# AssemblyInfo updating
3131
/updateassemblyinfo

0 commit comments

Comments
 (0)