Skip to content
Snippets Groups Projects
Unverified Commit ccee056c authored by Danilo Pianini's avatar Danilo Pianini Committed by GitHub
Browse files

fix(managers/gradle): Fix possibly borked regex match (#12169)

parent a46a2299
No related branches found
No related tags found
No related merge requests found
...@@ -31,7 +31,7 @@ export const language = ProgrammingLanguage.Java; ...@@ -31,7 +31,7 @@ export const language = ProgrammingLanguage.Java;
export const defaultConfig = { export const defaultConfig = {
fileMatch: [ fileMatch: [
'\\.gradle(\\.kts)?$', '\\.gradle(\\.kts)?$',
'(^|/)gradle.properties$', '(^|\\/)gradle\\.properties$',
'(^|\\/)gradle\\/.+\\.toml$', '(^|\\/)gradle\\/.+\\.toml$',
'\\.versions\\.toml$', '\\.versions\\.toml$',
], ],
......
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