From 0d75c8de97afebfe80b24c0e73109e8f9e2841a2 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Mon, 12 Oct 2015 21:05:16 -0300 Subject: [PATCH] improved bundle help --- cmd/antibody/command/bundle.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/antibody/command/bundle.go b/cmd/antibody/command/bundle.go index 71598f7..c4add12 100644 --- a/cmd/antibody/command/bundle.go +++ b/cmd/antibody/command/bundle.go @@ -9,9 +9,10 @@ import ( "github.com/codegangsta/cli" ) +// Bundle downloads (if needed) and then sources a given repo var Bundle = cli.Command{ Name: "bundle", - Usage: "bundle one or more bundles", + Usage: "downloads (if needed) and then sources a given repo", Action: doBundle, }