Skip to content

Commit

Permalink
build: fix build ExecuteCommandAsync
Browse files Browse the repository at this point in the history
  • Loading branch information
WeihanLi committed Jan 4, 2024
1 parent a29f05d commit fbe4369
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ async Task ExecuteCommandAsync(string commandText, KeyValuePair<string, string>[
}
Console.WriteLine($"Executing command: \n {commandTextWithReplacements}");
Console.WriteLine();
var result = await CommandExecutor.ExecuteAndOutputAsync(commandText);
var result = await CommandExecutor.ExecuteCommandAndOutputAsync(commandText);
result.EnsureSuccessExitCode();
Console.WriteLine();
}
Expand Down

0 comments on commit fbe4369

Please sign in to comment.