Skip to content

Commit 5aa62f1

Browse files
committed
suppress expected error case
1 parent 35e1803 commit 5aa62f1

File tree

1 file changed

+1
-1
lines changed
  • src/MagentoHackathon/Composer/Magento/Deploystrategy

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public function createDelegate($source, $dest)
105105
}
106106

107107
// Check we where able to create the symlink
108-
if(false === $destPath = readlink($destPath)){
108+
if (false === $destPath = @readlink($destPath)) {
109109
throw new \ErrorException("Symlink $destPath points to target $destPath");
110110
}
111111

0 commit comments

Comments
 (0)