From 92106d52d001e2085edb4443daf4b4c8aea27f92 Mon Sep 17 00:00:00 2001 From: Tristan Darricau Date: Wed, 30 Jul 2014 20:47:39 +0200 Subject: [ticket/12693] Force the composer.phar to be executable PHPBB3-12693 --- travis/check-executable-files.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'travis') 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 -- cgit v1.2.1