Skip to content

Commit 4da81cb

Browse files
committed
Merge pull request #131 from tkdb/patch-3
Revert "Fix "Could not delete" Exception on removeDirectory"
2 parents b7175e5 + 3d58204 commit 4da81cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MagentoHackathon/Composer/Magento/Deploystrategy/DeploystrategyAbstract.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ public static function rmdirRecursive($dir)
428428
{
429429
$fs = new \Composer\Util\Filesystem();
430430
if(is_dir($dir)){
431-
$result = $fs->removeDirectory(rtrim($dir,'/'));
431+
$result = $fs->removeDirectory($dir);
432432
}else{
433433
@unlink($dir);
434434
}

0 commit comments

Comments
 (0)