From 5afe1d39d1117596f490ad41accb03316384416f Mon Sep 17 00:00:00 2001 From: Jearvon Dharrie Date: Fri, 15 Sep 2017 14:54:44 -0400 Subject: [PATCH] Add `/downloads` to the outdated version message --- command/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/version.go b/command/version.go index f727667f6..34be3ceed 100644 --- a/command/version.go +++ b/command/version.go @@ -65,7 +65,7 @@ func (c *VersionCommand) Run(args []string) int { if info.Outdated { c.Ui.Output(fmt.Sprintf( "Your version of Terraform is out of date! The latest version\n"+ - "is %s. You can update by downloading from www.terraform.io", + "is %s. You can update by downloading from www.terraform.io/downloads.html", info.Latest)) } }