mirror of https://github.com/gophish/gophish
Removed unneeded print statement
parent
782f80fa12
commit
0961e22126
|
@ -7,7 +7,6 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"path/filepath"
|
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"bitbucket.org/liamstask/goose/lib/goose"
|
"bitbucket.org/liamstask/goose/lib/goose"
|
||||||
|
@ -94,8 +93,6 @@ func Setup(c *config.Config) error {
|
||||||
Env: "production",
|
Env: "production",
|
||||||
Driver: chooseDBDriver(conf.DBName, conf.DBPath),
|
Driver: chooseDBDriver(conf.DBName, conf.DBPath),
|
||||||
}
|
}
|
||||||
abs, _ := filepath.Abs(migrateConf.MigrationsDir)
|
|
||||||
fmt.Println(abs)
|
|
||||||
// Get the latest possible migration
|
// Get the latest possible migration
|
||||||
latest, err := goose.GetMostRecentDBVersion(migrateConf.MigrationsDir)
|
latest, err := goose.GetMostRecentDBVersion(migrateConf.MigrationsDir)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue