mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 05:18:52 +00:00
17 lines
295 B
Bash
Executable file
17 lines
295 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# @copyright (c) 2014 phpBB Group
|
|
# @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
|
#
|
|
set -e
|
|
set -x
|
|
|
|
DB=$1
|
|
TRAVIS_PHP_VERSION=$2
|
|
|
|
if [ "$TRAVIS_PHP_VERSION" == "5.5" -a "$DB" == "mysqli" ]
|
|
then
|
|
cd build
|
|
../phpBB/vendor/bin/phing sniff
|
|
cd ..
|
|
fi
|