diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-06-24 19:46:33 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-07-31 14:20:42 +0200 |
commit | 608117585764a231e6875f7c5c53f3132033139a (patch) | |
tree | c8ffa548c97ff53e3063a4f0a84a57e9f495e14e /travis | |
parent | ffcc1e9d9420e03eb5a1a208fbf5ab9ff60c2a26 (diff) | |
download | forums-608117585764a231e6875f7c5c53f3132033139a.tar forums-608117585764a231e6875f7c5c53f3132033139a.tar.gz forums-608117585764a231e6875f7c5c53f3132033139a.tar.bz2 forums-608117585764a231e6875f7c5c53f3132033139a.tar.xz forums-608117585764a231e6875f7c5c53f3132033139a.zip |
[ticket/12693] Fix the query for bin/*
PHPBB3-12693
Diffstat (limited to 'travis')
-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 '(' \ |