Skip to content
Snippets Groups Projects
Unverified Commit 374956c5 authored by Diego Sampaio's avatar Diego Sampaio
Browse files

Chore: Fix MongoDB versions on release notes (#24877)

parent 2f578cc5
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ const getMongoVersion = async function({ version, git }) {
return [];
}
return mongoMatch[1].replace(/"/g, '').replace(/ /g, '').split(',');
return mongoMatch[1].replace(/["' ]/g, '').split(',');
} catch (e) {
console.error(e);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment