From 3923c60b2239e27a866a7fce2ed09a92d95eeb2e Mon Sep 17 00:00:00 2001 From: "Jip J. Dekker" Date: Wed, 16 Mar 2016 21:46:14 +0100 Subject: [PATCH] Adds description to the ponder rootcommand --- cmd/root.go | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/cmd/root.go b/cmd/root.go index 40dc6d2..7afbe0b 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -24,13 +24,11 @@ import ( // This represents the base command when called without any subcommands var RootCmd = &cobra.Command{ Use: "ponder", - Short: "A brief description of your application", - Long: `A longer description that spans multiple lines and likely contains -examples and usage of using your application. For example: - -Cobra is a CLI library for Go that empowers applications. -This application is a tool to generate the needed files -to quickly create a Cobra application.`, + Short: "A managing tool for lilypond sheet music libraries", + Long: `Ponder is a tool to help manage your sheet music library. +The main purpose is to help in the compilation of your lilypond files +into both single files and a fully functioning song book. It also accepts +other PDF files to be part of your song book.`, // Uncomment the following line if your bare application // has an action associated with it: // Run: func(cmd *cobra.Command, args []string) { },