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
1 changed files with 1 additions and 5 deletions

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