mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 22:46:27 +00:00
fix(gradle): Provide correct packageFile for plugin versions extracted from template (#13854)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
This commit is contained in:
parent
ddd7fc58e0
commit
8787e02e88
1 changed files with 4 additions and 1 deletions
|
@ -245,7 +245,10 @@ function processPlugin({
|
|||
const currentValue = varData.value;
|
||||
const fileReplacePosition = varData.fileReplacePosition;
|
||||
dep.currentValue = currentValue;
|
||||
dep.managerData = { fileReplacePosition, packageFile };
|
||||
dep.managerData = {
|
||||
fileReplacePosition,
|
||||
packageFile: varData.packageFile,
|
||||
};
|
||||
} else {
|
||||
const currentValue = child.value;
|
||||
const fileReplacePosition = child.offset;
|
||||
|
|
Loading…
Reference in a new issue