From 5608175c13f3ae5a522edb6e50480e68d1bfbceb Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 2 Jul 2014 19:45:00 -0700 Subject: [PATCH] command: fix build --- command/apply.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/apply.go b/command/apply.go index 028909b3d..e8e14940b 100644 --- a/command/apply.go +++ b/command/apply.go @@ -13,7 +13,7 @@ import ( // ApplyCommand is a Command implementation that applies a Terraform // configuration and actually builds or changes infrastructure. type ApplyCommand struct { - ShutdownCh chan struct{} + ShutdownCh <-chan struct{} TFConfig *terraform.Config Ui cli.Ui }