ci: fix regex
This commit is contained in:
parent
540421267a
commit
356715f67d
1 changed files with 1 additions and 1 deletions
|
|
@ -66,7 +66,7 @@ async function main() {
|
||||||
const extensionsTomlPath = "extensions.toml"
|
const extensionsTomlPath = "extensions.toml"
|
||||||
const extensionsToml = await Bun.file(extensionsTomlPath).text()
|
const extensionsToml = await Bun.file(extensionsTomlPath).text()
|
||||||
|
|
||||||
const versionRegex = new RegExp(`(\\[${EXTENSION_NAME}\\]\\s+(?:.*\\s*)?)version = "[^"]+"`)
|
const versionRegex = new RegExp(`(\\[${EXTENSION_NAME}\\][\\s\\S]*?)version = "[^"]+"`)
|
||||||
const updatedToml = extensionsToml.replace(versionRegex, `$1version = "${cleanVersion}"`)
|
const updatedToml = extensionsToml.replace(versionRegex, `$1version = "${cleanVersion}"`)
|
||||||
|
|
||||||
if (updatedToml === extensionsToml) {
|
if (updatedToml === extensionsToml) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue