mirror of
https://github.com/opentofu/setup-opentofu.git
synced 2025-12-31 15:02:19 +00:00
Fix lint error for undefined variable
Signed-off-by: Devin <hoopysoup@users.noreply.github.com>
This commit is contained in:
parent
2bc068a74a
commit
d282dd434d
1 changed files with 1 additions and 1 deletions
|
|
@ -45,7 +45,7 @@ async function fetchReleases (githubToken) {
|
||||||
throw new Error('failed fetching releases (' + resp.message.statusCode + ')');
|
throw new Error('failed fetching releases (' + resp.message.statusCode + ')');
|
||||||
}
|
}
|
||||||
|
|
||||||
body = await resp.readBody();
|
let body = await resp.readBody();
|
||||||
const releasesMeta = JSON.parse(body);
|
const releasesMeta = JSON.parse(body);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue