Skip to content

Commit

Permalink
Fix throw
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebailey committed Oct 2, 2023
1 parent d6a65bd commit 461bc76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/repo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export async function ensureBuilt() {
await cmdShim.ifExists(paths.tsserver, tsserverBin);
}
} catch {
throw new Error(`Unable to build typescript at rev ${await revParse(`HEAD`)}; please file a bug!`);
throw new ExitError(`Unable to build typescript at rev ${await revParse(`HEAD`)}; please file a bug!`);
}
}

Expand Down

0 comments on commit 461bc76

Please sign in to comment.