diff options
-rwxr-xr-x | travis/check-executable-files.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/travis/check-executable-files.sh b/travis/check-executable-files.sh index 6ec91145ba..0a52c031dd 100755 --- a/travis/check-executable-files.sh +++ b/travis/check-executable-files.sh @@ -25,7 +25,7 @@ then files_skipped="-name composer.phar" # Files which have to be executable - executable_files="-path ${path}bin/*" + executable_files="-path ${path}bin/\*" incorect_files=$( \ find ${path} \ @@ -45,7 +45,7 @@ then '(' \ ${executable_files} \ ')' -a \ - -not -perm -100 \ + -not -perm +100 \ ')' -o \ '(' \ -not '(' \ |