We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28cf13f commit 7fe4fccCopy full SHA for 7fe4fcc
internal/client/handlers/shell_windows.go
@@ -45,7 +45,7 @@ func runCommandWithPty(command string, args []string, user *internal.User, reque
45
46
fullCommand := command + " " + strings.Join(args, " ")
47
vsn := windows.RtlGetVersion()
48
- if vsn.MajorVersion < 10 || vsn.BuildNumber < 17763 || true {
+ if vsn.MajorVersion < 10 || vsn.BuildNumber < 17763 {
49
50
log.Info("Windows version too old for Conpty (%d, %d), using basic shell", vsn.MajorVersion, vsn.BuildNumber)
51
runWithWinPty(fullCommand, connection, requests, log, *user.Pty)
0 commit comments