Remove unused Bun.peek

This commit is contained in:
SukkaW
2024-06-03 11:56:11 +08:00
parent 6e32af4dc8
commit 7167be852f
8 changed files with 8 additions and 24 deletions

View File

@@ -65,10 +65,7 @@ export const downloadPreviousBuild = task(import.meta.path, async (span) => {
const extract = tarStream.extract();
pipeline(
Readable.fromWeb(
// @ts-expect-error -- DOM type is incompatible with Node type
resp.body
),
Readable.fromWeb(resp.body),
gunzip,
extract
);