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 var migrations Migrations
// SQL migration files. // SQL migration files.
sqlMigrationFiles, err := filepath.Glob(dirpath + "/**.sql") sqlMigrationFiles, err := filepath.Glob(dirpath + "/*.sql")
if err != nil { if err != nil {
return nil, err return nil, err
} }
@ -178,7 +178,7 @@ func CollectMigrations(dirpath string, current, target int64) (Migrations, error
} }
// Go migration files // Go migration files
goMigrationFiles, err := filepath.Glob(dirpath + "/**.go") goMigrationFiles, err := filepath.Glob(dirpath + "/*.go")
if err != nil { if err != nil {
return nil, err return nil, err
} }