diff --git a/cmd/prepare.go b/cmd/prepare.go index c7387b9c..3a4e651d 100644 --- a/cmd/prepare.go +++ b/cmd/prepare.go @@ -2,6 +2,7 @@ package cmd import ( "fmt" + "github.com/benleem/prattl/pysrc" "github.com/spf13/cobra" ) @@ -12,7 +13,7 @@ func init() { var prepareCommand = &cobra.Command{ Use: "prepare", - Short: "prepare the python distribution required by prattl", + Short: "Prepare the python distribution required by prattl", Long: "This command prepares the distribution needed to use prattl", Args: cobra.ExactArgs(0), RunE: func(cmd *cobra.Command, args []string) error { diff --git a/cmd/transcribe.go b/cmd/transcribe.go index 67780510..b4c10d60 100644 --- a/cmd/transcribe.go +++ b/cmd/transcribe.go @@ -28,6 +28,7 @@ var transcribeCmd = &cobra.Command{ return fmt.Errorf("%s", "no file path provided\n") } + fmt.Println("transcribing...") transcriptionMap := make(map[string]string) transcriptions, err := transcribe(args) if err != nil {