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 2160a97 commit acecdcfCopy full SHA for acecdcf
dev/tests/integration/framework/Magento/TestFramework/Application.php
@@ -498,7 +498,9 @@ private function copyAppConfigFiles()
498
foreach ($globalConfigFiles as $file) {
499
$targetFile = $this->_configDir . str_replace($this->_globalConfigDir, '', $file);
500
$this->_ensureDirExists(dirname($targetFile));
501
- copy($file, $targetFile);
+ if ($file !== $targetFile) {
502
+ copy($file, $targetFile);
503
+ }
504
}
505
506
0 commit comments