@@ -87,11 +87,11 @@ |
||
| 87 | 87 | protected function configureExecutable(Executable\Rsync $exec, Target $target) |
| 88 | 88 | { |
| 89 | 89 | $exec->fromPath($this->getRsyncLocation($target)) |
| 90 | - ->toHost($this->host) |
|
| 91 | - ->toPath($this->path) |
|
| 92 | - ->toUser($this->user) |
|
| 93 | - ->compressed(!$target->shouldBeCompressed()) |
|
| 94 | - ->removeDeleted($this->delete) |
|
| 95 | - ->exclude($this->excludes); |
|
| 90 | + ->toHost($this->host) |
|
| 91 | + ->toPath($this->path) |
|
| 92 | + ->toUser($this->user) |
|
| 93 | + ->compressed(!$target->shouldBeCompressed()) |
|
| 94 | + ->removeDeleted($this->delete) |
|
| 95 | + ->exclude($this->excludes); |
|
| 96 | 96 | } |
| 97 | 97 | } |
@@ -65,11 +65,11 @@ |
||
| 65 | 65 | protected function configureExecutable(Executable\Rsync $exec, Target $target) |
| 66 | 66 | { |
| 67 | 67 | $exec->fromHost($this->host) |
| 68 | - ->fromUser($this->user) |
|
| 69 | - ->fromPath($this->path) |
|
| 70 | - ->toPath($this->getRsyncLocation($target)) |
|
| 71 | - ->removeDeleted($this->delete) |
|
| 72 | - ->exclude($this->excludes); |
|
| 68 | + ->fromUser($this->user) |
|
| 69 | + ->fromPath($this->path) |
|
| 70 | + ->toPath($this->getRsyncLocation($target)) |
|
| 71 | + ->removeDeleted($this->delete) |
|
| 72 | + ->exclude($this->excludes); |
|
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | /** |