Update PTY start call sites

This commit is contained in:
2026-05-27 13:20:40 +01:00
parent 9aecc8b7a2
commit ec0c148164
3 changed files with 6 additions and 6 deletions

View File

@@ -108,7 +108,7 @@ func run(argv []string, cols, rows uint16, idleMS int, followHost, stdinPassthro
}
defer em.Close()
child, err := pty.Start(argv, nil, cols, rows)
child, err := pty.Start(argv, nil, "", cols, rows)
if err != nil {
return fmt.Errorf("pty: %w", err)
}