Skip to content

Commit 8e6b26f

Browse files
replace errant tabs with spaces
1 parent 009096a commit 8e6b26f

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ Arguments:
3939
Options:
4040
--authors <authors> (REQUIRED) Path to an authors file with lines mapping TFVC usernames to
4141
Git authors, e.g.: DOMAIN\John = John Doe <john@doe.com>
42-
Auto-generates file at provided path with placeholders if
43-
not found, eg: DOMAIN\John = John Doe <email>
42+
Auto-generates file at provided path with placeholders if
43+
not found, eg: DOMAIN\John = John Doe <email>
4444
--out-dir <out-dir> The directory path at which to create a new Git repository.
4545
Defaults to the last segment in the root path under the
4646
current directory.

src/TfvcMigrator/Program.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace TfvcMigrator;
1212

1313
public static class Program
1414
{
15-
public static Task<int> Main(string[] args)
15+
public static Task<int> Main(string[] args)
1616
{
1717
var command = new RootCommand("Migrates TFVC source history to idiomatic Git history while preserving branch topology.")
1818
{
@@ -126,10 +126,10 @@ pat is not null
126126
Console.WriteLine("A valid email address must be added to the authors file for each of the following TFVC users:");
127127
foreach (var user in unmappedAuthors)
128128
{
129-
Console.WriteLine(user.UniqueName);
130-
await File.AppendAllTextAsync(authors, $"{user.UniqueName} = {user.DisplayName} <email>{Environment.NewLine}");
131-
}
132-
return 1;
129+
Console.WriteLine(user.UniqueName);
130+
await File.AppendAllTextAsync(authors, $"{user.UniqueName} = {user.DisplayName} <email>{Environment.NewLine}");
131+
}
132+
return 1;
133133
}
134134

135135
Console.WriteLine("Downloading changesets and converting to commits...");
@@ -550,8 +550,8 @@ private static ImmutableDictionary<string, Identity> LoadAuthors(string authorsP
550550

551551
if (!File.Exists(authorsPath))
552552
{
553-
Console.WriteLine($"Authors file not found. Creating: {authorsPath}");
554-
File.Create(authorsPath);
553+
Console.WriteLine($"Authors file not found. Creating: {authorsPath}");
554+
File.Create(authorsPath);
555555
return builder.ToImmutable();
556556
}
557557

0 commit comments

Comments
 (0)