Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
* develop:
  Fix undefined variable.
  • Loading branch information
Jelle-S committed Mar 9, 2017
2 parents 8c0e171 + e64441a commit 5419ca3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AbstractRoboFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ protected function uploadBackupTask($worker, AbstractAuth $auth, $remote) {
$collection
->taskSsh($worker, $auth)
->exec('mkdir -p ' . $backupDir)
->taskScp($host, $auth)
->taskScp($worker, $auth)
->put($backupDir . '/' . $dbBackupFile, $dbBackupFile)
->put($backupDir . '/' . $filesBackupFile, $filesBackupFile);
return $collection;
Expand Down

0 comments on commit 5419ca3

Please sign in to comment.