Remove -T parameter from mv command in rollback

Resolves: #15
This commit is contained in:
Georg Großberger 2016-10-07 20:38:32 +02:00
parent 436348657f
commit 9b75f33abe

View file

@ -140,7 +140,7 @@ class RollbackTask extends AbstractTask implements IsReleaseAware
if ($resultFetch && $userGroup) {
$command .= " && chown -h {$userGroup} ${tmplink}";
}
$command .= " && mv -T {$tmplink} {$symlink}";
$command .= " && mv -f {$tmplink} {$symlink}";
$result = $this->runCommandRemote($command);