We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ba0677 commit a22747fCopy full SHA for a22747f
src/commands/compile.ts
@@ -124,7 +124,7 @@ What do you want to do?`,
124
125
function updateOthers(others: string[], baseUri: vscode.Uri) {
126
let workspaceFolder = vscode.workspace.getWorkspaceFolder(baseUri);
127
- if (!workspaceFolder && baseUri.scheme !== "file") {
+ if (!workspaceFolder && (baseUri.scheme === FILESYSTEM_SCHEMA || baseUri.scheme === FILESYSTEM_READONLY_SCHEMA)) {
128
// hack to deal with problem seen with isfs* schemes
129
workspaceFolder = vscode.workspace.getWorkspaceFolder(baseUri.with({ path: "" }));
130
}
0 commit comments