aboutsummaryrefslogtreecommitdiffstats
path: root/travis/phing-sniff.sh
blob: 04118af69a9d9e25011909be5fea0b5ea4149f0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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