From a097ba092d61fac425884b6524bd678979c4767c Mon Sep 17 00:00:00 2001 From: Renan DelValle Date: Sat, 2 Dec 2017 15:53:29 -0800 Subject: [PATCH] Root changed to not run anything. --- cmd/root.go | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/cmd/root.go b/cmd/root.go index 5a08a20..a1f295d 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -5,11 +5,9 @@ import "github.com/spf13/cobra" var rootCmd = &cobra.Command{ Use: "ionbeam", Short: "ionbeam is a client for Apache Aurora", - Long: `A light-weight, intuitive command line client for use with Apache Aurora.`, - Run: func(cmd *cobra.Command, args []string) {}, - } + Long: `A light-weight, intuitive command line client for use with Apache Aurora.`, +} - - func Execute() { +func Execute() { rootCmd.Execute() - } \ No newline at end of file +}