Skip to content
This repository was archived by the owner on Nov 18, 2022. It is now read-only.

Commit 4337d5d

Browse files
committed
pattern was not picked up by windows.
Only when applying `**` at both ends does it pick it up, shouldn't really affect anyone, given it's still using the full path for matching.
1 parent 21eb25b commit 4337d5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ class ClientWorkspace {
208208
};
209209

210210
const pattern = this.config.multiProjectEnabled
211-
? `${this.folder.uri.path}/**`
211+
? `**${this.folder.uri.path}/**`
212212
: undefined;
213213
const collectionName = this.config.multiProjectEnabled
214214
? `rust ${this.folder.uri.toString()}`

0 commit comments

Comments
 (0)