From ff01d6bdb613c5c2015b9a2c980d1f7b4a40137e Mon Sep 17 00:00:00 2001 From: Keiichi Hirobe Date: Mon, 17 Feb 2020 01:26:12 +0900 Subject: [PATCH] Glob not support **. Change from ** to * to avoid confusion --- migrate.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/migrate.go b/migrate.go index fa112c8..3c61545 100644 --- a/migrate.go +++ b/migrate.go @@ -151,7 +151,7 @@ func CollectMigrations(dirpath string, current, target int64) (Migrations, error var migrations Migrations // SQL migration files. - sqlMigrationFiles, err := filepath.Glob(dirpath + "/**.sql") + sqlMigrationFiles, err := filepath.Glob(dirpath + "/*.sql") if err != nil { return nil, err } @@ -178,7 +178,7 @@ func CollectMigrations(dirpath string, current, target int64) (Migrations, error } // Go migration files - goMigrationFiles, err := filepath.Glob(dirpath + "/**.go") + goMigrationFiles, err := filepath.Glob(dirpath + "/*.go") if err != nil { return nil, err }