Skip to content

Commit 496c359

Browse files
committed
Fix capitalization in nbgv source code
1 parent c13d166 commit 496c359

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/nbgv/Program.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -347,16 +347,16 @@ private static int OnInstallCommand(string path, string version, IReadOnlyList<s
347347
return (int)ExitCodes.OK;
348348
}
349349

350-
private static int OnGetVersionCommand(string project, IReadOnlyList<string> metadata, string format, string variable, string commitIsh)
350+
private static int OnGetVersionCommand(string project, IReadOnlyList<string> metadata, string format, string variable, string commitish)
351351
{
352352
if (string.IsNullOrEmpty(format))
353353
{
354354
format = DefaultOutputFormat;
355355
}
356356

357-
if (string.IsNullOrEmpty(commitIsh))
357+
if (string.IsNullOrEmpty(commitish))
358358
{
359-
commitIsh = DefaultRef;
359+
commitish = DefaultRef;
360360
}
361361

362362
string searchPath = GetSpecifiedOrCurrentDirectoryPath(project);
@@ -368,9 +368,9 @@ private static int OnGetVersionCommand(string project, IReadOnlyList<string> met
368368
return (int)ExitCodes.NoGitRepo;
369369
}
370370

371-
if (!context.TrySelectCommit(commitIsh))
371+
if (!context.TrySelectCommit(commitish))
372372
{
373-
Console.Error.WriteLine("rev-parse produced no commit for {0}", commitIsh);
373+
Console.Error.WriteLine("rev-parse produced no commit for {0}", commitish);
374374
return (int)ExitCodes.BadGitRef;
375375
}
376376

0 commit comments

Comments
 (0)