Skip to content

Commit 8736be1

Browse files
committed
Properly join string[] profile args
1 parent ede3632 commit 8736be1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/terminal/browser/terminalService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -831,7 +831,7 @@ export class TerminalService implements ITerminalService {
831831
return `"${e.replace('/"/g', '\\"')}"`;
832832
}
833833
return e;
834-
});
834+
}).join(' ');
835835
return { label: p.profileName, description: `${p.path} ${argsString}` };
836836
}
837837
return { label: p.profileName, description: p.path };

0 commit comments

Comments
 (0)