Skip to content

The command "list" does not end the process when there are no migrations to list.#210

Description

@brianr482

Hi! 馃憢

Firstly, thanks for your work on this project! 馃檪

Today I used patch-package to patch migrate@2.1.0 for the project I'm working on.

I noticed that the command list stays alive forever when it does not find any migration to list.

Here is the diff that solved my problem:

diff --git a/node_modules/migrate/bin/migrate-list b/node_modules/migrate/bin/migrate-list
index d25b3b1..a8acf63 100755
--- a/node_modules/migrate/bin/migrate-list
+++ b/node_modules/migrate/bin/migrate-list
@@ -68,7 +68,8 @@ migrate.load({
   }
 
   if (set.migrations.length === 0) {
-    return log('list', 'No Migrations')
+    log('list', 'No Migrations')
+    process.exit(0)
   }
 
   set.migrations.forEach(function (migration) {

This issue body was partially generated by patch-package.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions