Glob not support **. Change from ** to * to avoid confusion

pull/202/head
Keiichi Hirobe 2020-02-17 01:26:12 +09:00
parent 7218a8d9f2
commit ff01d6bdb6
1 changed files with 2 additions and 2 deletions

View File

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