Index: branches/5.2.x/core/units/helpers/deployment_helper.php =================================================================== diff -u -N -r16513 -r16572 --- branches/5.2.x/core/units/helpers/deployment_helper.php (.../deployment_helper.php) (revision 16513) +++ branches/5.2.x/core/units/helpers/deployment_helper.php (.../deployment_helper.php) (revision 16572) @@ -1,6 +1,6 @@ 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'); } /** @@ -484,6 +491,15 @@ } if ( $this->dryRun ) { + $this->out('Simulating Database Upgrade ... ', true); + + foreach ( $this->revisionSqls as $revision => $sqls ) { + echo PHP_EOL . $this->colorText($this->revisionTitles[$revision], 'gray', true) . PHP_EOL; + echo '...' . PHP_EOL; + } + + echo PHP_EOL; + $this->appliedRevisions = array_merge($this->appliedRevisions, array_keys($this->revisionSqls)); return true;