Merge pull request #2445 from farrokhi/master

Reset terminal color after error message
This commit is contained in:
Dirk-Jan C. Binnema 2023-03-30 18:12:13 +03:00 committed by GitHub
commit d225bb74fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ output_error(const std::string& what, bool use_color)
std::cerr << col.fg(Color::Red) << "error" << col.reset() << ": "
<< col.fg(Color::BrightYellow)
<< what << "\n";
<< what << col.reset() << "\n";
}