From a699cac3be7e091d9b7f89946212f547eb652960 Mon Sep 17 00:00:00 2001 From: niten94 <127052329+niten94@users.noreply.github.com> Date: Sat, 5 Apr 2025 10:40:19 +0800 Subject: [PATCH] Support term emulation on solaris, netbsd, openbsd/* Support terminal emulation on platforms below: - Solaris - NetBSD: Supported in creack/pty since v1.1.12 - OpenBSD with GOOS != amd64 - Other architectures are supported now in creack/pty --- internal/action/terminal_supported.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/action/terminal_supported.go b/internal/action/terminal_supported.go index 403e94c2..702114e2 100644 --- a/internal/action/terminal_supported.go +++ b/internal/action/terminal_supported.go @@ -1,4 +1,4 @@ -//go:build linux || darwin || dragonfly || openbsd_amd64 || freebsd +//go:build linux || darwin || dragonfly || solaris || openbsd || netbsd || freebsd package action