mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-26 12:21:36 +03:00
Removed static conditional
- I actually wanted this to be a production-only check but forgot to change it before pushing
This commit is contained in:
parent
7a7d64b764
commit
49dc6f8cdc
@ -35,7 +35,7 @@ module.exports = {
|
||||
this.packageConfig['adminXSettingsFilename'] = defaultAdminXSettingFilename;
|
||||
this.packageConfig['adminXSettingsHash'] = (this.env === 'production') ? generateHash(path.join(adminXSettingsPath, defaultAdminXSettingFilename)) : 'development';
|
||||
|
||||
if (true) {
|
||||
if (this.env === 'production') {
|
||||
console.log('Admin-X Settings:', this.packageConfig['adminXSettingsFilename'], this.packageConfig['adminXSettingsHash']);
|
||||
console.log('Koenig-Lexical:', this.packageConfig['editorFilename'], this.packageConfig['editorHash']);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user