[go: nahoru, domu]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[tool] when writing to openssl as a part of macOS/iOS code-signing, flush the stdin stream before closing it #150120

Prev Previous commit
Next Next commit
fix comment that already went stale before the PR even merged
  • Loading branch information
andrewkolos committed Jun 28, 2024
commit 2e11cd074066906c79f5e5b1f198007880f14e27
2 changes: 1 addition & 1 deletion packages/flutter_tools/lib/src/base/process.dart
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ abstract class ProcessUtils {
(Object error, StackTrace stackTrace) {
handleError(error, stackTrace);

// We may have already completed with an error in the above catch block.
// We may have already completed with an error in `handleError`.
if (!completer.isCompleted) {
completer.complete();
}
Expand Down