Skip to content

Commit

Permalink
Merge pull request #249 from wbierbower/feat/symlinks
Browse files Browse the repository at this point in the history
  • Loading branch information
lostintangent committed Jun 23, 2022
2 parents 94e9634 + 55770a9 commit 1ef66d7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/store/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ async function readTourDirectory(uri: vscode.Uri): Promise<CodeTour[]> {
const fileUri = vscode.Uri.joinPath(uri, file);
if (type === vscode.FileType.File) {
return readTourFile(fileUri);
} else if (type === vscode.FileType.SymbolicLink) {
return readTourFile(fileUri)
} else {
return readTourDirectory(fileUri);
}
Expand Down

0 comments on commit 1ef66d7

Please sign in to comment.