diff --git a/src/validate.ts b/src/validate.ts index 7075a94..7fbed40 100644 --- a/src/validate.ts +++ b/src/validate.ts @@ -33,7 +33,7 @@ const verify = async ( const shasumRes = await request( `${getBaseUrl(platform, version)}.SHA256SUM`, ); - const shasum = await shasumRes.body.text(); + const shasum = await shasumRes.text(); if (verbose) { console.log(`Received SHA256SUM ${shasum}`); }