Skip to content

Commit

Permalink
Updated README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
muxx committed Feb 24, 2014
1 parent 12e5de8 commit 62a08e6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ $dplr->run();
Define callback if you want to show steps of execution:
```php
$dplr->run(function($step) {
echo "$step...\n";
echo $step;
});

/*
Expand All @@ -138,12 +138,14 @@ $dplr->run(function($step) {
Connect to servers...
Prepare tasks...
Run tasks...
CPY /home/webmaster/test/share/parameters.yml -> /home/webmaster/project/app/config/parameters.yml (54.194.27.92)...
CMD cd /home/webmaster/project && ./app/console doctrine:migration:migrate --env=prod --no-debug (54.194.27.92)...
CPY /home/webmaster/test/share/parameters.yml -> /home/webmaster/project/app/config/parameters.yml....
CMD cd /home/webmaster/project && ./app/console doctrine:migration:migrate --env=prod --no-debug..
Build report...
*/
```

Each dot at the end of task lines means executing of the one action (upload, command, download) on the one server.

<a name="result-processing"></a>
### Result processing

Expand Down

0 comments on commit 62a08e6

Please sign in to comment.