mirror of https://github.com/pressly/goose.git
Glob not support **. Change from ** to * to avoid confusion
parent
7218a8d9f2
commit
ff01d6bdb6
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue