Skip to content

Commit

Permalink
fix(seed): typo in seed command (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
RomainLanz authored and thetutlage committed Oct 21, 2017
1 parent 1ce3d72 commit d99ec4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/Seed.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class SeedDatabase extends Command {
*/
_validateState (force) {
if (process.env.NODE_ENV === 'production' && !force) {
throw new Error('Cannot run migrations in production. Use --force flag to continue')
throw new Error('Cannot run seeds in production. Use --force flag to continue')
}
}

Expand Down

0 comments on commit d99ec4f

Please sign in to comment.