aboutsummaryrefslogtreecommitdiffstats
path: root/travis/check-executable-files.sh
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-06-24 19:46:33 +0200
committerTristan Darricau <github@nicofuma.fr>2014-07-31 14:20:42 +0200
commit608117585764a231e6875f7c5c53f3132033139a (patch)
treec8ffa548c97ff53e3063a4f0a84a57e9f495e14e /travis/check-executable-files.sh
parentffcc1e9d9420e03eb5a1a208fbf5ab9ff60c2a26 (diff)
downloadforums-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/check-executable-files.sh')
-rwxr-xr-xtravis/check-executable-files.sh4
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 '(' \