Skip to content

Commit

Permalink
fix deno compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Jan 8, 2024
1 parent 942a6d0 commit 75c2554
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmd/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const extractZipBlob = async (
const [_, ...path] = entry.filename.split("/").reverse();
const stream = new TransformStream();
const arrayBuffer = new Response(stream.readable).arrayBuffer();
await entry.getData(stream.writable);
await entry.getData!(stream.writable);
const data = await arrayBuffer;
await Deno.mkdir(
`${BUILD_DIR}/${project_id}/${sha256}/${path.reverse().join("/")}`,
Expand Down

0 comments on commit 75c2554

Please sign in to comment.