From 56a56527c66b756cda11b6796f10df1c797017cf Mon Sep 17 00:00:00 2001 From: Martin Magakian Date: Mon, 3 Jul 2017 15:45:41 +0200 Subject: [PATCH] Update README.md Late edit I promise... --- source/go-bindata/README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/source/go-bindata/README.md b/source/go-bindata/README.md index 1ffab20..879face 100644 --- a/source/go-bindata/README.md +++ b/source/go-bindata/README.md @@ -25,11 +25,7 @@ func main() { return migrations.Asset(name) }) - d, err := bindata.WithInstance(s) - if err != nil { - t.Fatal(err) - } - + d, err := bindata.WithInstance(s) m, err := migrate.NewWithSourceInstance("go-bindata", d, "database://foobar") m.Up() // run your migrations and handle the errors above of course }