change how grunt splits tasks up which fix broken migrate call

This commit is contained in:
Henry Oswald 2016-11-23 15:32:44 +00:00
parent 241918c2d0
commit b1a3be4510
3 changed files with 2 additions and 2 deletions

View file

@ -22,6 +22,7 @@ module.exports = (grunt) ->
grunt.loadNpmTasks "grunt-contrib-coffee"
grunt.loadNpmTasks "grunt-shell"
grunt.task.loadTasks "./tasks"
execute = {}
for service in SERVICES
@ -112,7 +113,7 @@ module.exports = (grunt) ->
grunt.registerTask "check:make", "Check that make is installed", () ->
Helpers.checkMake @async()
grunt.registerTask 'migrate', "compile migrations and run them", ['coffee:migrate', 'shell:migrate']
grunt.registerTask 'migrate', "compile migrations and run them", ["coffee:migrate", 'shell:migrate']
Helpers =
@ -242,5 +243,4 @@ module.exports = (grunt) ->
rclient.on 'error', errorHandler
require('load-grunt-config')(grunt)