From b8939da2425eb96dff26dbf51d6ead01fbb4901a Mon Sep 17 00:00:00 2001 From: Nicofuma Date: Tue, 3 Feb 2015 17:23:11 +0100 Subject: [ticket/13407] Bump minimal version to php 5.3.9 PHPBB3-13407 --- travis/check-executable-files.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'travis/check-executable-files.sh') diff --git a/travis/check-executable-files.sh b/travis/check-executable-files.sh index 4d420add1c..e1a1625d18 100755 --- a/travis/check-executable-files.sh +++ b/travis/check-executable-files.sh @@ -15,7 +15,7 @@ TRAVIS_PHP_VERSION=$2 root="$3" path="${root}phpBB/" -if [ "$TRAVIS_PHP_VERSION" == "5.3.3" -a "$DB" == "mysqli" ] +if [ "$TRAVIS_PHP_VERSION" == "5.3" -a "$DB" == "mysqli" ] then # Check the permissions of the files -- cgit v1.2.1 From f3dc2a801d7e077e5e10a143b8d450b0b4a3aa11 Mon Sep 17 00:00:00 2001 From: Tristan Darricau Date: Mon, 28 Sep 2015 17:40:24 +0200 Subject: [ticket/14205] Bump PHP requirement to PHP 5.4 PHPBB3-14205 --- travis/check-executable-files.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'travis/check-executable-files.sh') diff --git a/travis/check-executable-files.sh b/travis/check-executable-files.sh index e1a1625d18..4ec037e6ce 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" -a "$DB" == "mysqli" ] +if [ "$NOTESTS" == '1' ] then # Check the permissions of the files -- cgit v1.2.1 From a6acbc445e58bbc42080f5c77c0671a5c9c01060 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Tue, 10 Nov 2015 16:57:25 +0100 Subject: [ticket/14281] Add install/phpbbcli.php to executable files list PHPBB3-14281 --- travis/check-executable-files.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'travis/check-executable-files.sh') diff --git a/travis/check-executable-files.sh b/travis/check-executable-files.sh index 4ec037e6ce..1aa8dca073 100755 --- a/travis/check-executable-files.sh +++ b/travis/check-executable-files.sh @@ -28,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} \ -- cgit v1.2.1