We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ConfigureAwait
1 parent c499978 commit 9ecf83dCopy full SHA for 9ecf83d
src/Commands/QuerySubmodules.cs
@@ -65,7 +65,7 @@ public QuerySubmodules(string repo)
65
if (submodules.Count > 0)
66
{
67
Args = "config --file .gitmodules --list";
68
- rs = await ReadToEndAsync();
+ rs = await ReadToEndAsync().ConfigureAwait(false);
69
if (rs.IsSuccess)
70
71
var modules = new Dictionary<string, ModuleInfo>();
@@ -114,7 +114,7 @@ public QuerySubmodules(string repo)
114
}
115
116
Args = $"--no-optional-locks status --porcelain -- {builder}";
117
118
if (!rs.IsSuccess)
119
return submodules;
120
0 commit comments