Skip to content

Commit

Permalink
Merge branch 'release/v0.4.29'
Browse files Browse the repository at this point in the history
  • Loading branch information
betterthanclay committed Nov 6, 2024
2 parents 307a731 + 6d3db6f commit a3b5c6c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.4.29 (2024-11-06)
* Improved executable file check command

## v0.4.28 (2024-10-20)
* Added composer.lock to git export whitelist

Expand Down
2 changes: 1 addition & 1 deletion src/Task/CheckExecutablePermissions.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function execute(): bool
}

$result = Systemic::capture(
'find . -type f ' . implode(' ', $exStr) . ' -executable',
'find . -type f \\( -perm -u=x -o -perm -g=x -o -perm -o=x \\) ' . implode(' ', $exStr) . ' -exec test -x {} \\; -print',
Integra::$rootDir
);

Expand Down

0 comments on commit a3b5c6c

Please sign in to comment.