Index: branches/5.3.x/core/units/helpers/deployment_helper.php =================================================================== diff -u -N -r16519 -r16600 --- branches/5.3.x/core/units/helpers/deployment_helper.php (.../deployment_helper.php) (revision 16519) +++ branches/5.3.x/core/units/helpers/deployment_helper.php (.../deployment_helper.php) (revision 16600) @@ -1,6 +1,6 @@ dryRun ) { $this->resetCaches(); $this->refreshThemes(); + $this->dumpAssets(); } } @@ -321,7 +322,14 @@ /** @var LanguageImportHelper $language_import_helper */ $language_import_helper = $this->Application->recallObject('LanguageImportHelper'); - $language_import_helper->performExport(EXPORT_PATH . '/' . $this->moduleName . '.lang', '|0|1|2|', $languages, '|' . $this->moduleName . '|'); + $this->out('Exporting LanguagePack ... '); + $language_import_helper->performExport( + EXPORT_PATH . '/' . $this->moduleName . '.lang', + '|0|1|2|', + $languages, + '|' . $this->moduleName . '|' + ); + $this->displayStatus('OK'); return $this; } @@ -366,6 +374,18 @@ } /** + * Dumps assets + * + * @return void + */ + private function dumpAssets() + { + $this->out('Dumping Assets ... '); + $this->_event->CallSubEvent('OnDumpAssets'); + $this->displayStatus('OK'); + } + + /** * Runs database upgrade script. * * @return boolean @@ -494,6 +514,8 @@ } if ( $this->dryRun ) { + $this->out('Simulating Database Upgrade ... ', true); + foreach ( $this->revisionSqls as $revision => $sqls ) { $this->initLog($revision, ModuleDeploymentLog::MODE_MANUAL); @@ -503,6 +525,8 @@ $this->saveLog(ModuleDeploymentLog::STATUS_SKIPPED); } + echo PHP_EOL; + return true; }