mirror of https://github.com/pressly/goose.git
Merge pull request #43 from duffn/subdirectories-fix
Fix globbing for files in subdirectoriespull/19/merge
commit
67771ece62
|
@ -97,7 +97,10 @@ func CollectMigrations(dirpath string, current, target int64) (Migrations, error
|
||||||
// extract the numeric component of each migration,
|
// extract the numeric component of each migration,
|
||||||
// filter out any uninteresting files,
|
// filter out any uninteresting files,
|
||||||
// and ensure we only have one file per migration version.
|
// and ensure we only have one file per migration version.
|
||||||
sqlMigrations, err := filepath.Glob(dirpath + "/**/*.sql")
|
sqlMigrations, err := filepath.Glob(dirpath + "/*.sql")
|
||||||
|
sqlMigrationsSubDirectories, err := filepath.Glob(dirpath + "/**/*.sql")
|
||||||
|
sqlMigrations = append(sqlMigrations, sqlMigrationsSubDirectories...)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue