From 2a6c4e0d2c2ee20b3715691ca0ed1934c71e3bec Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 9 Jun 2015 21:09:56 -0700 Subject: [PATCH] command/push: output fix --- command/push.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/push.go b/command/push.go index b4007db80..f888186de 100644 --- a/command/push.go +++ b/command/push.go @@ -236,7 +236,7 @@ func (c *PushCommand) Run(args []string) int { return 1 } - c.Ui.Say(fmt.Sprintf("Push successful to '%s'", push.Name)) + c.Ui.Say(fmt.Sprintf("Push successful to '%s'", name)) return 0 }