1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-23 18:11:47 +02:00

[ticket/12693] Expand manually the wildcard

PHPBB3-12693
This commit is contained in:
Tristan Darricau
2014-06-24 21:07:14 +02:00
parent 6081175857
commit d284675241

View File

@@ -9,7 +9,7 @@
# the docs/CREDITS.txt file. # the docs/CREDITS.txt file.
# #
set -e set -e
set -x
DB=$1 DB=$1
TRAVIS_PHP_VERSION=$2 TRAVIS_PHP_VERSION=$2
path="$3" path="$3"
@@ -18,6 +18,7 @@ if [ "$TRAVIS_PHP_VERSION" == "5.5" -a "$DB" == "mysqli" ]
then then
# Check the permissions of the files # Check the permissions of the files
# The following variables MUST NOT contain any wildcard
# Directories to skip # Directories to skip
directories_skipped="-path ${path}develop -o -path ${path}vendor" directories_skipped="-path ${path}develop -o -path ${path}vendor"
@@ -25,7 +26,7 @@ then
files_skipped="-name composer.phar" files_skipped="-name composer.phar"
# Files which have to be executable # Files which have to be executable
executable_files="-path ${path}bin/\*" executable_files="-path ${path}bin/phpbbcli.php"
incorect_files=$( \ incorect_files=$( \
find ${path} \ find ${path} \