Skip to content

Commit

Permalink
Chore: Fix MongoDB versions on release notes (#24877)
Browse files Browse the repository at this point in the history
  • Loading branch information
sampaiodiego committed Mar 21, 2022
1 parent 2f578cc commit 374956c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .houston/metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 374956c

Please sign in to comment.