aboutsummaryrefslogtreecommitdiffstats
path: root/travis/check-executable-files.sh
diff options
context:
space:
mode:
Diffstat (limited to 'travis/check-executable-files.sh')
-rwxr-xr-xtravis/check-executable-files.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/travis/check-executable-files.sh b/travis/check-executable-files.sh
index 61468809b3..6f625a8cc7 100755
--- a/travis/check-executable-files.sh
+++ b/travis/check-executable-files.sh
@@ -23,12 +23,12 @@ then
directories_skipped="-path ${path}develop -o -path ${path}vendor"
# Files to skip
- files_skipped="-name composer.phar"
+ files_skipped=""
# Files which have to be executable
- executable_files="-path ${path}bin/*"
+ executable_files="-path ${path}bin/* -o -path ${path}composer.phar"
- incorect_files=$( \
+ incorrect_files=$( \
find ${path} \
'(' \
'(' \
@@ -58,9 +58,9 @@ then
')' \
)
- if [ "${incorect_files}" != '' ]
+ if [ "${incorrect_files}" != '' ]
then
- ls -la ${incorect_files}
+ ls -la ${incorrect_files}
echo "does not have the proper permissions.";
exit 1;
fi