We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5444a9e commit 737a1f5Copy full SHA for 737a1f5
1 file changed
extensions/ql-vscode/src/helpers.ts
@@ -288,12 +288,7 @@ export async function prepareCodeTour(): Promise<void> {
288
existsSync(toursFolderPath) &&
289
!isCodespacesTemplate()
290
) {
291
- const tutorialWorkspaceUri = Uri.parse(
292
- join(
293
- workspace.workspaceFolders[0].uri.fsPath,
294
- "tutorial.code-workspace",
295
- ),
296
- );
+ const tutorialWorkspaceUri = Uri.parse(tutorialWorkspacePath);
297
await commands.executeCommand("vscode.openFolder", tutorialWorkspaceUri);
298
}
299
0 commit comments