Skip to content
Snippets Groups Projects

Issue #3304365: Do not check excluded folders for symlinks

Merged Adam G-H requested to merge issue/automatic_updates-3304365:3304365-do-not-check into 8.x-2.x
Compare and Show latest version
1 file
+ 3
1
Compare changes
  • Side-by-side
  • Inline
@@ -454,7 +454,9 @@ class Stage implements LoggerAwareInterface {
$this->failureMarker->write($this, $this->getFailureMarkerMessage());
// Exclude the failure file from the commit operation.
$ignored_paths = new PathList($event->getExcludedPaths());
$ignored_paths->add($this->failureMarker->getPath());
$ignored_paths->add([
$this->failureMarker->getPath(),
]);
try {
$this->committer->commit($stage_dir, $active_dir, $ignored_paths, NULL, $timeout);
Loading