From c0eb764057b984dc64a67e378cebc45b0feaf8e4 Mon Sep 17 00:00:00 2001 From: Spencer Herzberg Date: Thu, 4 Apr 2019 21:53:02 +0000 Subject: [PATCH] fixing the arg parse for Count --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 9563812..153fd10 100644 --- a/main.go +++ b/main.go @@ -97,7 +97,7 @@ func main() { r.SecurityGroups = ctx.StringSlice("security-group") r.Subnets = ctx.StringSlice("subnet") r.Environment = ctx.StringSlice("env") - r.Count = ctx.Int64("number-of-tasks") + r.Count = ctx.Int64("count") if ctx.Bool("inherit-env") { for _, env := range os.Environ() {