does not exists -> does not exist

pull/211/head
Tristan Fisher 2020-04-18 22:47:35 -04:00
parent 9ede98d097
commit 8c026ee7c1
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ func AddNamedMigration(filename string, up func(*sql.Tx) error, down func(*sql.T
// migrations folder and go func registry, and key them by version. // migrations folder and go func registry, and key them by version.
func CollectMigrations(dirpath string, current, target int64) (Migrations, error) { func CollectMigrations(dirpath string, current, target int64) (Migrations, error) {
if _, err := os.Stat(dirpath); os.IsNotExist(err) { if _, err := os.Stat(dirpath); os.IsNotExist(err) {
return nil, fmt.Errorf("%s directory does not exists", dirpath) return nil, fmt.Errorf("%s directory does not exist", dirpath)
} }
var migrations Migrations var migrations Migrations