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:
parent
65b5ccfe54
commit
f0b04d0ef1
1 changed files with 5 additions and 1 deletions
|
@ -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');
|
||||
})
|
||||
|
|
Loading…
Add table
Reference in a new issue