Skip to content

Commit

Permalink
fix(seed): fix unexpected token
Browse files Browse the repository at this point in the history
fixes #2580
  • Loading branch information
Awk34 committed May 25, 2017
1 parent 613f8d6 commit 65a2438
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/app/server/config/seed(models).js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default function seedDatabaseIfNeeded() {
<% if (filters.mongooseModels) { %>})<% }
if (filters.sequelizeModels) { %>}])<% } %>
.then(() => console.log('finished populating users'))
.catch(err => console.log('error populating users', err));<% } %>
});
.catch(err => console.log('error populating users', err));
});<% } %>
}
}

0 comments on commit 65a2438

Please sign in to comment.