Skip to content
Snippets Groups Projects
Commit 9a28852e authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix: correct logic

parent 339a7675
No related branches found
No related tags found
No related merge requests found
......@@ -38,5 +38,5 @@ function extractDependencies(content) {
}
lineNumber += 1;
}
return deps.filter(dep => !dep.currentTag || dep.currentTag.includes('${'));
return deps.filter(dep => !(dep.currentTag && dep.currentTag.includes('${')));
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment