0
0
mirror of https://github.com/thegeeklab/renovate-presets.git synced 2024-09-21 06:32:48 +02:00

fix regex escaping

This commit is contained in:
Robert Kaussow 2020-12-30 19:29:47 +01:00
parent 7416c1d375
commit 755df25e21
No known key found for this signature in database
GPG Key ID: 65362AE74AF98B61

View File

@ -18,7 +18,7 @@
{ {
"fileMatch": ["^Makefile$"], "fileMatch": ["^Makefile$"],
"matchStrings": [ "matchStrings": [
"# renovate: datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)( versioning=(?<versioning>.*?))?\\n.*?_VERSION (:|?)= (?<currentValue>.*)\\s" "# renovate: datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)( versioning=(?<versioning>.*?))?\\n.*?_VERSION (:|\\?)= (?<currentValue>.*)\\s"
] ]
} }
], ],