Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jay2610 authored Dec 12, 2022
1 parent efb982d commit 14da190
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ async function deleteOlderReleases(keepLatest) {
method: "GET",
});
if (!res.ok) {
throw new Error(`Error! status: ${response.status}`);
throw new Error(`Error! status: ${res.status}`);
}
const { data } = await res.json();
if (data.length === 0) {
Expand Down

0 comments on commit 14da190

Please sign in to comment.