Skip to content

Commit

Permalink
Remove unnecessary log
Browse files Browse the repository at this point in the history
  • Loading branch information
thisispiers committed Mar 21, 2024
1 parent ec2bf86 commit 0dd4739
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Deployment/Deployer.php
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,9 @@ public function collectPaths(string $subdir = ''): array
continue;

} elseif (Helpers::matchMask($short, $this->ignoreMasks, is_dir($path))) {
$this->logger->log(str_pad("Ignoring .$short", 40), 'gray');
if (!str_ends_with($short, '.DS_Store')) {
$this->logger->log(str_pad("Ignoring .$short", 40), 'gray');
}
continue;

} elseif ($this->includeMasks && !Helpers::matchMask($short, $this->includeMasks, is_dir($path))) {
Expand Down

0 comments on commit 0dd4739

Please sign in to comment.