We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 362b93b commit ebb3849Copy full SHA for ebb3849
1 file changed
src/utility.ts
@@ -35,7 +35,7 @@ export function getMPRemoteName() {
35
let cwd = vscode.workspace.workspaceFolders[0].uri.fsPath;
36
let venv = execSync(`cd ${cwd} && uv python find`);
37
let pwd = String.fromCharCode(...venv).trim().split("/");
38
- mpremote = `${pwd} -m mpremote`
+ mpremote = `${pwd.join("/")} -m mpremote`
39
}
40
console.debug('Calling mpremote as:', mpremote);
41
return mpremote;
0 commit comments