Skip to content

Commit

Permalink
Ignore node_modules in executable permissions check
Browse files Browse the repository at this point in the history
Signed-off-by: Tom Wright <tom@inflatablecookie.com>
  • Loading branch information
betterthanclay committed Aug 9, 2024
1 parent 633e434 commit 2830fca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
* Ignore node_modules in executable permissions check

## v0.4.19 (2024-08-09)
* Fixed git exports task

Expand Down
3 changes: 2 additions & 1 deletion src/Task/CheckExecutablePermissions.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ public function execute(): bool
$exclude = [
'./.git/*',
'./vendor/*',
'./effigy'
'./effigy',
'*/node_modules/*',
];

$exStr = [];
Expand Down

0 comments on commit 2830fca

Please sign in to comment.