We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a6f7ee commit 2ef81a8Copy full SHA for 2ef81a8
src/MagentoHackathon/Composer/Magento/Deploystrategy/Copy.php
@@ -84,7 +84,9 @@ public function createDelegate($source, $dest)
84
if (is_dir($destPath)) {
85
$destPath .= '/' . basename($sourcePath);
86
}
87
- return copy($sourcePath, $destPath);
+ copy($sourcePath, $destPath);
88
+ $this->addDeployedFile($destPath);
89
+ return;
90
91
92
// Copy dir to dir
0 commit comments