Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
brianr482 opened this issue Oct 28, 2024 · 0 comments

Comments

@brianr482
Copy link

Hi! 👋

Firstly, thanks for your work on this project! 🙂

Today I used patch-package to patch [email protected] 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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant