0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Fixed 4-permalinks-setting migration script

no issue

- remove the special comment when migrating the routes.yaml file
This commit is contained in:
kirrg001 2018-08-10 12:15:53 +02:00 committed by Katharina Irrgang
parent 65b5ccfe54
commit f0b04d0ef1

View file

@ -36,7 +36,11 @@ module.exports.up = () => {
})
.then(() => {
const permalinkValue = settingsModel.get('value');
const modifiedContent = content.replace(/\/?'?{globals.permalinks}'?\/?/g, permalinkValue.replace(/:(\w+)/g, '{$1}'));
let modifiedContent = content.replace(/\/?'?{globals.permalinks}'?\/?/g, permalinkValue.replace(/:(\w+)/g, '{$1}'));
if (modifiedContent.indexOf('# special 1.0 compatibility setting. See the docs for details.') !== -1) {
modifiedContent = modifiedContent.replace('# special 1.0 compatibility setting. See the docs for details.', '');
}
return fs.writeFile(filePath, modifiedContent, 'utf8');
})