diff options
Diffstat (limited to 'travis/check-executable-files.sh')
| -rwxr-xr-x | travis/check-executable-files.sh | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/travis/check-executable-files.sh b/travis/check-executable-files.sh index 4d420add1c..1aa8dca073 100755 --- a/travis/check-executable-files.sh +++ b/travis/check-executable-files.sh @@ -12,10 +12,11 @@ set -e  DB=$1  TRAVIS_PHP_VERSION=$2 -root="$3" +NOTESTS=$3 +root="$4"  path="${root}phpBB/" -if [ "$TRAVIS_PHP_VERSION" == "5.3.3" -a "$DB" == "mysqli" ] +if [ "$NOTESTS" == '1' ]  then  	# Check the permissions of the files @@ -27,7 +28,7 @@ then  	files_skipped="-false"  	# Files which have to be executable -	executable_files="-path ${path}bin/*" +	executable_files="-path ${path}bin/* -o -path ${path}install/phpbbcli.php"  	incorrect_files=$( 								\  		find ${path}								\ | 
