Removed unneeded print statement

pull/1791/head
Jordan Wright 2020-05-25 20:55:00 -05:00
parent 782f80fa12
commit 0961e22126
1 changed files with 0 additions and 3 deletions

View File

@ -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 {