Skip to content

Commit ebb3849

Browse files
committed
Creating slash path instead of comma separated list
1 parent 362b93b commit ebb3849

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/utility.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export function getMPRemoteName() {
3535
let cwd = vscode.workspace.workspaceFolders[0].uri.fsPath;
3636
let venv = execSync(`cd ${cwd} && uv python find`);
3737
let pwd = String.fromCharCode(...venv).trim().split("/");
38-
mpremote = `${pwd} -m mpremote`
38+
mpremote = `${pwd.join("/")} -m mpremote`
3939
}
4040
console.debug('Calling mpremote as:', mpremote);
4141
return mpremote;

0 commit comments

Comments
 (0)