Skip to content

Commit

Permalink
fix(script-runner): oops I did it again
Browse files Browse the repository at this point in the history
  • Loading branch information
SabreCat committed Oct 7, 2018
1 parent 98c9a76 commit 39bc001
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions migrations/migration-runner.js
Expand Up @@ -19,9 +19,9 @@ setUpServer();
// Replace this with your migration
const processUsers = require('./users/takeThis.js');
processUsers()
.then(
.then(function () {
process.exitCode = 0;
)
})
.catch(function (err) {
console.log(err);
process.exitCode = 1;
Expand Down

0 comments on commit 39bc001

Please sign in to comment.