Skip to content

Commit f7806d1

Browse files
authored
Fix another numbering bug (#346)
Signed-off-by: Gavin John <[email protected]>
1 parent eff3c7a commit f7806d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/merge.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ async function generateEIPNumber(octokit: Octokit, repository: Repository, front
5353
path: 'ERCS'
5454
},
5555
];
56-
const eips = [];
56+
let eips = [];
5757
for (let eipPathConfig in eipPathConfigs) {
5858
const { data } = await octokit.rest.repos.getContent({
5959
owner: repository.owner.login,
6060
repo: repository.name,
6161
path: 'EIPS'
6262
});
63-
eips.concat(data);
63+
eips = eips.concat(data);
6464
}
6565

6666
// Get all EIP numbers

0 commit comments

Comments
 (0)