Skip to content

Commit 94303e1

Browse files
committed
*.go: updated go:build added via gofmt
Signed-off-by: Vincent Batts <[email protected]>
1 parent b9356e6 commit 94303e1

11 files changed

+11
-0
lines changed

keywordfuncs_bsd.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build darwin || freebsd || netbsd || openbsd
12
// +build darwin freebsd netbsd openbsd
23

34
package mtree

keywordfuncs_unsupported.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build !linux && !darwin && !freebsd && !netbsd && !openbsd
12
// +build !linux,!darwin,!freebsd,!netbsd,!openbsd
23

34
package mtree

lchtimes_unix.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build darwin || dragonfly || freebsd || openbsd || linux || netbsd || solaris
12
// +build darwin dragonfly freebsd openbsd linux netbsd solaris
23

34
package mtree

lchtimes_unsupported.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build windows
12
// +build windows
23

34
package mtree

stat_unix.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build !windows
12
// +build !windows
23

34
package mtree

stat_windows.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build windows
12
// +build windows
23

34
package mtree

updatefuncs_linux.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build linux
12
// +build linux
23

34
package mtree

updatefuncs_unsupported.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build !linux
12
// +build !linux
23

34
package mtree

xattr/xattr_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build linux
12
// +build linux
23

34
package xattr

xattr/xattr_unsupported.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build !linux
12
// +build !linux
23

34
package xattr

xattr/xattr_unsupported_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build !linux
12
// +build !linux
23

34
package xattr

0 commit comments

Comments
 (0)