Skip to content

Commit

Permalink
Merge pull request #15500 from dfr/freebsd-terminal
Browse files Browse the repository at this point in the history
pkg/domain: Add terminal support for FreeBSD
  • Loading branch information
openshift-merge-robot authored Aug 29, 2022
2 parents 7287f9e + 0b3184a commit 3a63420
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//go:build linux || freebsd
// +build linux freebsd

package terminal

import (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//go:build linux || freebsd
// +build linux freebsd

package terminal

import (
Expand Down
4 changes: 2 additions & 2 deletions pkg/domain/infra/abi/terminal/terminal_unsupported.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build !linux
// +build !linux
//go:build !linux && !freebsd
// +build !linux,!freebsd

package terminal

Expand Down

0 comments on commit 3a63420

Please sign in to comment.