We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8fabcf commit 7274e1bCopy full SHA for 7274e1b
1 file changed
demo/server.js
@@ -60,7 +60,7 @@ function startServer() {
60
const cols = parseInt(req.query.cols);
61
const rows = parseInt(req.query.rows);
62
const isWindows = process.platform === 'win32';
63
- const term = pty.spawn(isWindows ? 'pwsh.exe' : 'bash', [], {
+ const term = pty.spawn(isWindows ? 'powershell.exe' : 'bash', [], {
64
name: 'xterm-256color',
65
cols: cols ?? 80,
66
rows: rows ?? 24,
0 commit comments