0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2024-12-30 22:34:01 -05:00

Removed shell:dbhealth from grunt master

no issue

- since Ghost 2.0, the Ghost server takes care of executing `knex-migrator migrate` if needed
This commit is contained in:
kirrg001 2018-10-16 10:24:02 +02:00
parent 3a70cdb2b6
commit 8d0595a73c

View file

@ -244,10 +244,6 @@ var config = require('./core/server/config'),
'yarn; git submodule foreach "git checkout master && git pull ' +
upstream + ' master"';
}
},
dbhealth: {
command: 'knex-migrator health'
}
},
@ -715,7 +711,7 @@ var config = require('./core/server/config'),
// `grunt master` [`upstream` is the default upstream to pull from]
// `grunt master --upstream=parent`
grunt.registerTask('master', 'Update your current working folder to latest master.',
['shell:master', 'subgrunt:init', 'shell:dbhealth']
['shell:master', 'subgrunt:init']
);
// ### Release