Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mattn/go-isatty
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.0.19
Choose a base ref
...
head repository: mattn/go-isatty
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.0.20
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on May 20, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    13f3590 View commit details

Commits on Oct 17, 2023

  1. Merge pull request #74 from dkegel-fastly/dkegel-bug73-tinygo

    Adjust build tags to allow building on tinygo; for #73.
    mattn authored Oct 17, 2023
    Copy the full SHA
    a7c0235 View commit details
Showing with 7 additions and 4 deletions.
  1. +2 −1 isatty_bsd.go
  2. +3 −2 isatty_others.go
  3. +2 −1 isatty_tcgets.go
3 changes: 2 additions & 1 deletion isatty_bsd.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
//go:build (darwin || freebsd || openbsd || netbsd || dragonfly || hurd) && !appengine
//go:build (darwin || freebsd || openbsd || netbsd || dragonfly || hurd) && !appengine && !tinygo
// +build darwin freebsd openbsd netbsd dragonfly hurd
// +build !appengine
// +build !tinygo

package isatty

5 changes: 3 additions & 2 deletions isatty_others.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
//go:build appengine || js || nacl || wasm
// +build appengine js nacl wasm
//go:build (appengine || js || nacl || tinygo || wasm) && !windows
// +build appengine js nacl tinygo wasm
// +build !windows

package isatty

3 changes: 2 additions & 1 deletion isatty_tcgets.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
//go:build (linux || aix || zos) && !appengine
//go:build (linux || aix || zos) && !appengine && !tinygo
// +build linux aix zos
// +build !appengine
// +build !tinygo

package isatty