fix: refine Windows terminal comment
yoonhyunwoo committed
Mar 8, 2026 at 14:45 UTC
c51b88868ada7f855f23358e20047dcab863ae94
1 file changed
+1
-2
extensions/vscode/src/extension.ts
+1
-2
@@ -144,8 +144,7 @@ function createTunnelTerminal(): vscode.Terminal {
144
return vscode.window.createTerminal("Portal Tunnel");
145
}
146
147
- // Force PowerShell on Windows so command syntax is consistent even if the
148
- // user's default profile is cmd/WSL/Git Bash.
147
+ // Use PowerShell on Windows for non-PowerShell terminal profiles (Git Bash, WSL, etc.).
148
return vscode.window.createTerminal({
149
name: "Portal Tunnel",
150
shellPath: "powershell.exe",