mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-23 17:04:05 +01:00
go1.17: run goimports to supports the new //go:build lines
This commit is contained in:
parent
1edb8014bc
commit
a6dbda1ea8
@ -1,3 +1,4 @@
|
||||
//go:build tools
|
||||
// +build tools
|
||||
|
||||
package main
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build illumos || solaris
|
||||
// +build illumos solaris
|
||||
|
||||
package timeoutconn
|
||||
|
@ -1,5 +1,5 @@
|
||||
// +build !illumos
|
||||
// +build !solaris
|
||||
//go:build !illumos && !solaris
|
||||
// +build !illumos,!solaris
|
||||
|
||||
package timeoutconn
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build freebsd
|
||||
// +build freebsd
|
||||
|
||||
package tcpsock
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build linux
|
||||
// +build linux
|
||||
|
||||
package tcpsock
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build !linux && !freebsd
|
||||
// +build !linux,!freebsd
|
||||
|
||||
package tcpsock
|
||||
|
@ -1,3 +1,4 @@
|
||||
//go:build !linux
|
||||
// +build !linux
|
||||
|
||||
package zfs
|
||||
|
Loading…
Reference in New Issue
Block a user