Skip to content

Commit

Permalink
Run make .gofmt
Browse files Browse the repository at this point in the history
This brings in Go 1.17+ build tags.

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
  • Loading branch information
kolyshkin committed Oct 18, 2021
1 parent 0e5956d commit 98b2d35
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions cmd/runtimetest/mount/mountinfo_linux.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build linux
// +build linux

package mount
Expand Down
1 change: 1 addition & 0 deletions cmd/runtimetest/mount/mountinfo_solaris.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build solaris && cgo
// +build solaris,cgo

package mount
Expand Down
1 change: 1 addition & 0 deletions cmd/runtimetest/mount/mountinfo_unsupported.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build (!windows && !linux && !freebsd && !solaris) || (freebsd && !cgo) || (solaris && !cgo)
// +build !windows,!linux,!freebsd,!solaris freebsd,!cgo solaris,!cgo

package mount
Expand Down
1 change: 1 addition & 0 deletions generate/seccomp/seccomp_default_linux.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build linux
// +build linux

package seccomp
Expand Down
1 change: 1 addition & 0 deletions generate/seccomp/seccomp_default_unsupported.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build !linux
// +build !linux

package seccomp
Expand Down
1 change: 1 addition & 0 deletions validate/validate_linux.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build linux
// +build linux

package validate
Expand Down
1 change: 1 addition & 0 deletions validate/validate_unsupported.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build !linux
// +build !linux

package validate
Expand Down

0 comments on commit 98b2d35

Please sign in to comment.