Fixed bug when config:hosts shows more than one table of hosts #1403

This commit is contained in:
Andrej Ludinovskov 2017-11-02 20:43:58 +00:00
parent 5a8246aed2
commit 84738138b6
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
# Changelog # Changelog
### Fixed
- Fixed bug when config:hosts shows more than one table of hosts [#1403]
## master ## master
[v6.0.3...master](https://github.com/deployphp/deployer/compare/v6.0.3...master) [v6.0.3...master](https://github.com/deployphp/deployer/compare/v6.0.3...master)

View File

@ -28,4 +28,4 @@ task('config:hosts', function () {
->setHeaders(['Host', 'Hostname', 'Stage', 'Roles', 'Deploy path']) ->setHeaders(['Host', 'Hostname', 'Stage', 'Roles', 'Deploy path'])
->setRows($hosts); ->setRows($hosts);
$table->render(); $table->render();
}); })->once();