Run (gofmt -s -w)

Go 1.17 introduces a much more reasonable build constraint format, and gofmt now fails without using it.

Sadly we still need the old format as well, to support <1.17 builds.

Signed-off-by: Miloslav Trmač <mitr@redhat.com>
This commit is contained in:
Miloslav Trmač 2021-08-21 20:15:40 +02:00
parent 5739b90946
commit 0e87d4d1ca
3 changed files with 3 additions and 0 deletions

View File

@ -1,3 +1,4 @@
//go:build !containers_image_openpgp
// +build !containers_image_openpgp
package main

View File

@ -1,3 +1,4 @@
//go:build !linux
// +build !linux
package main

View File

@ -1,3 +1,4 @@
//go:build openshift_shell
// +build openshift_shell
package main