Skip to content

Commit

Permalink
Make the incremental rsync task respect unchanged files
Browse files Browse the repository at this point in the history
  • Loading branch information
garfieldius committed Mar 24, 2016
1 parent 85ab69f commit e1ff039
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mage/Task/BuiltIn/Deployment/Strategy/RsyncTask.php
Expand Up @@ -85,7 +85,7 @@ public function run()
"$releasesDirectory/$currentRelease/ $releasesDirectory/{$id}"
);
} else {
$this->runCommandRemote('cp -R ' . $releasesDirectory . '/' .
$this->runCommandRemote('cp -a ' . $releasesDirectory . '/' .
$currentRelease . ' ' . $releasesDirectory . '/' .
$this->getConfig()->getReleaseId());
}
Expand Down

0 comments on commit e1ff039

Please sign in to comment.