|
@@ -437,10 +437,7 @@ namespace Terra.Arbitrator.Services
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- await Cli.Wrap(GitCommand.FindVsCodeExecutable())
|
|
|
- .WithArguments(args => args.Add("--wait").Add(change.FilePath))
|
|
|
- .WithWorkingDirectory(ProjectRoot)
|
|
|
- .ExecuteAsync();
|
|
|
+ await GitCommand.RunAsync(new StringBuilder(), new[] { GitCommand.FindVsCodeExecutable(), "--wait", change.FilePath }, 0, 141);
|
|
|
|
|
|
var fullPath = Path.Combine(ProjectRoot, change.FilePath);
|
|
|
var fileContent = await File.ReadAllTextAsync(fullPath);
|