diff options
author | Valentin Rothberg <vrothberg@redhat.com> | 2022-03-18 09:11:53 +0100 |
---|---|---|
committer | Valentin Rothberg <vrothberg@redhat.com> | 2022-03-18 09:11:53 +0100 |
commit | ea08765f400d828907f231baa84bd880a00d95f1 (patch) | |
tree | 3ddf8be1f7b9d66416451632a3664a13a925a548 /pkg/signal/signal_linux.go | |
parent | e59f71d230cf5435dc569add90e22cc644e38647 (diff) | |
download | podman-ea08765f400d828907f231baa84bd880a00d95f1.tar.gz podman-ea08765f400d828907f231baa84bd880a00d95f1.tar.bz2 podman-ea08765f400d828907f231baa84bd880a00d95f1.zip |
go fmt: use go 1.18 conditional-build syntax
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
Diffstat (limited to 'pkg/signal/signal_linux.go')
-rw-r--r-- | pkg/signal/signal_linux.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/signal/signal_linux.go b/pkg/signal/signal_linux.go index 305b9d21f..21e09c9fe 100644 --- a/pkg/signal/signal_linux.go +++ b/pkg/signal/signal_linux.go @@ -1,5 +1,5 @@ -// +build linux -// +build !mips,!mipsle,!mips64,!mips64le +//go:build linux && !mips && !mipsle && !mips64 && !mips64le +// +build linux,!mips,!mipsle,!mips64,!mips64le // Signal handling for Linux only. package signal |