From d252afa6b0565f945b56e207b8e5b13f862c958e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Tue, 14 Oct 2025 14:34:15 +0200 Subject: [PATCH] cli/command/container: add go1.23 build constraint for range-over-func MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Paweł Gronowski --- cli/command/container/opts.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cli/command/container/opts.go b/cli/command/container/opts.go index 723537e87c..35c85acf57 100644 --- a/cli/command/container/opts.go +++ b/cli/command/container/opts.go @@ -1,3 +1,6 @@ +// FIXME(vvoland): remove once we are a module; the go:build directive prevents go from downgrading language version to go1.16: +//go:build go1.23 + package container import (