From f8fc5b6bc3ccce6a2ec4acae7f3e89b864b5a388 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Sat, 16 Mar 2024 16:43:17 +0100 Subject: [PATCH] scripts/vendor: remove -compat=1.19 We originally added this -compat to keep a consistent format of the vendor.mod files for cases where there were differences between go versions. I don't think we really need this anymore, so let's remove. Signed-off-by: Sebastiaan van Stijn --- scripts/vendor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/vendor b/scripts/vendor index 0812e41c67e0..793f3fe94fda 100755 --- a/scripts/vendor +++ b/scripts/vendor @@ -23,7 +23,7 @@ EOL } update() { - (set -x ; go mod tidy -compat=1.19 -modfile=vendor.mod; go mod vendor -modfile=vendor.mod) + (set -x ; go mod tidy -modfile=vendor.mod; go mod vendor -modfile=vendor.mod) } validate() {