Skip to content

Commit

Permalink
Less strict
Browse files Browse the repository at this point in the history
  • Loading branch information
JrMasterModelBuilder committed May 4, 2024
1 parent b95fc3a commit 61b53fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/harman.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export async function runtimes() {

// eslint-disable-next-line no-await-in-loop
const js = await res.text();
const m = js.match(/AIR runtime - version ([\d+.]+)/);
const m = js.match(/AIR\s+runtime\s+-\s+version\s+([\d+.]+)/i);
if (m) {
// eslint-disable-next-line prefer-destructuring
version = m[1];
Expand Down

0 comments on commit 61b53fe

Please sign in to comment.