style(ci): normalize provisioning error throw formatting

This commit is contained in:
777genius 2026-04-20 11:08:40 +03:00
parent 5f05ab0919
commit 8fa107d055

View file

@ -1131,7 +1131,7 @@ async function waitForTmuxPanesToExit(
} }
if (lastError) { if (lastError) {
throw (lastError instanceof Error ? lastError : new Error(getErrorMessage(lastError))); throw lastError instanceof Error ? lastError : new Error(getErrorMessage(lastError));
} }
return remainingPaneIds; return remainingPaneIds;
} }