Using the extension in windows with vscodium in combination with a pixi environment leads to a loop showing the blocked message and asking for allowance.
I think this is related to the lowercase drive letter from
export function cwd(): string {
return vscode.workspace.workspaceFolders?.[0].uri.fsPath?? os.homedir() ?? os.homedir()
}
This fixes it for me. It capitalizes the drive letter in cwd().
#866
Using the extension in windows with vscodium in combination with a pixi environment leads to a loop showing the blocked message and asking for allowance.
I think this is related to the lowercase drive letter from
This fixes it for me. It capitalizes the drive letter in
cwd().#866