Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ public static void systemUninstall() {

private static void doSystemUninstall() {
try {
if (terminal instanceof FastTerminal fastTerminal) {
// wait for the asynchronous systemInstall call before we uninstall to ensure a consistent state
fastTerminal.getTerminal();
}
AnsiConsole.systemUninstall();
} finally {
terminal = null;
Expand Down
Loading