From 9ed1d713d619c428c8a8adcd13667d6b3f54b247 Mon Sep 17 00:00:00 2001 From: Joshua Harshman Date: Sun, 23 Aug 2020 11:45:41 -0600 Subject: [PATCH] bugfix/cli: Temporary fix for go get on cobra cli (#1200) PR #1139 introduced a complexity that will have to be taken into account as we figure out our release pipeline. This fix pins to cobrav1.0.0 as a temporary workaround. fixes: #1191 --- cobra/go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cobra/go.mod b/cobra/go.mod index c53413db9..ae1e15e6b 100644 --- a/cobra/go.mod +++ b/cobra/go.mod @@ -4,7 +4,7 @@ go 1.12 require ( github.com/mitchellh/go-homedir v1.1.0 - github.com/spf13/cobra v0.0.0 + github.com/spf13/cobra v1.0.0 github.com/spf13/viper v1.7.0 )