We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 427712c commit 2c8d532Copy full SHA for 2c8d532
1 file changed
scripts/runtime-upgrade.ts
@@ -82,8 +82,8 @@ async function setAllClientReleases(api: ApiPromise, baseUrl: String, runtimeNam
82
return res.text();
83
});
84
85
- const regex = new RegExp("([a-f0-9]+)\\\s*[.]\/(([a-z]+)-parachain-metadata-" + runtimeName + ")", "g");
86
- let matches = []
+ const regex = new RegExp("([a-f0-9]+)\\\s*[.]\/((oracle|vault)-parachain-metadata-" + runtimeName + ")\n", "g");
+ let matches = [];
87
let match;
88
while ((match = regex.exec(checksumFile)) !== null) {
89
matches.push([match[1], match[2], match[3]]);
0 commit comments