From 652194d8a0e2f11c99b35da0902ef88e6e15d240 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20=C3=81vila=20de=20Esp=C3=ADndola?= Date: Mon, 19 Oct 2020 16:02:48 -0700 Subject: [PATCH] Update required go MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The go documentation says If the go command is not invoked with a -mod flag and the vendor directory is present and the "go" version in go.mod is 1.14 or higher, the go command will act as if it were invoked with -mod=vendor. This updates go in go.mod so that the vendor directory is actually used. Signed-off-by: Rafael Ávila de Espíndola --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 103a663ff7..dc9c94c618 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/scylladb/scylla-operator -go 1.13 +go 1.14 require ( github.com/bitly/go-hostpool v0.1.0 // indirect