We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
"."
1 parent f6b0ae2 commit 7ef35afCopy full SHA for 7ef35af
1 file changed
extensions/ql-vscode/src/common/file-tree-nodes.ts
@@ -41,6 +41,9 @@ export class FileTreeDirectory extends FileTreeNode {
41
}
42
43
public createDirectory(relativePath: string): FileTreeDirectory {
44
+ if (relativePath === ".") {
45
+ return this;
46
+ }
47
const dirName = dirname(relativePath);
48
if (dirName === ".") {
49
return this.createChildDirectory(relativePath);
0 commit comments