mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -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:
parent
3a70cdb2b6
commit
8d0595a73c
1 changed files with 1 additions and 5 deletions
|
@ -244,10 +244,6 @@ var config = require('./core/server/config'),
|
||||||
'yarn; git submodule foreach "git checkout master && git pull ' +
|
'yarn; git submodule foreach "git checkout master && git pull ' +
|
||||||
upstream + ' master"';
|
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` is the default upstream to pull from]
|
||||||
// `grunt master --upstream=parent`
|
// `grunt master --upstream=parent`
|
||||||
grunt.registerTask('master', 'Update your current working folder to latest master.',
|
grunt.registerTask('master', 'Update your current working folder to latest master.',
|
||||||
['shell:master', 'subgrunt:init', 'shell:dbhealth']
|
['shell:master', 'subgrunt:init']
|
||||||
);
|
);
|
||||||
|
|
||||||
// ### Release
|
// ### Release
|
||||||
|
|
Loading…
Reference in a new issue