Archived
1
0

Fixes gofmt errors

This commit is contained in:
Jip J. Dekker 2016-04-14 13:28:46 +02:00
parent 773cafe83d
commit 0e510b23cb
5 changed files with 18 additions and 18 deletions

View File

@ -29,7 +29,7 @@ var (
verbose bool
)
// This represents the base command when called without any subcommands
// RootCmd represents the base command when called without any subcommands
var RootCmd = &cobra.Command{
Use: "ponder",
Short: "A managing tool for lilypond sheet music libraries",

View File

@ -45,7 +45,7 @@ func CompileDir(path string, opts *settings.Settings) {
msg string
err error
)
switch filepath.Ext(scores[i].Path){
switch filepath.Ext(scores[i].Path) {
case ".ly":
msg, err = Lilypond(scores[i].Path)
case ".pdf":