mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 03:47:56 +00:00
Fix #31956 - $(basename) globs ignored by filesearch.ts
This commit is contained in:
parent
5c58b8cb2d
commit
611b1a591d
1 changed files with 2 additions and 2 deletions
|
@ -697,10 +697,10 @@ class AbsoluteAndRelativeParsedExpression {
|
|||
.forEach(key => {
|
||||
if (path.isAbsolute(key)) {
|
||||
absoluteGlobExpr = absoluteGlobExpr || glob.getEmptyExpression();
|
||||
absoluteGlobExpr[key] = true;
|
||||
absoluteGlobExpr[key] = expr[key];
|
||||
} else {
|
||||
relativeGlobExpr = relativeGlobExpr || glob.getEmptyExpression();
|
||||
relativeGlobExpr[key] = true;
|
||||
relativeGlobExpr[key] = expr[key];
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue