style(ci): normalize provisioning error throw formatting
This commit is contained in:
parent
5f05ab0919
commit
8fa107d055
1 changed files with 1 additions and 1 deletions
|
|
@ -1131,7 +1131,7 @@ async function waitForTmuxPanesToExit(
|
|||
}
|
||||
|
||||
if (lastError) {
|
||||
throw (lastError instanceof Error ? lastError : new Error(getErrorMessage(lastError)));
|
||||
throw lastError instanceof Error ? lastError : new Error(getErrorMessage(lastError));
|
||||
}
|
||||
return remainingPaneIds;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue