Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

Commit

Permalink
fixed lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
markbates committed Jul 19, 2018
1 parent d77d5d6 commit bc3bb18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generators/soda/soda.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package soda

import (
"github.com/gobuffalo/makr"
sg "github.com/gobuffalo/pop/soda/cmd/generate"
"github.com/gobuffalo/pop/soda/cmd/generate"
)

// Run the soda generator
Expand Down Expand Up @@ -34,7 +34,7 @@ func (sd Generator) Run(root string, data makr.Data) error {
Should: should,
Runner: func(rootPath string, data makr.Data) error {
data["dialect"] = sd.Dialect
return sg.GenerateConfig("./database.yml", data)
return generate.Config("./database.yml", data)
},
})

Expand Down

0 comments on commit bc3bb18

Please sign in to comment.