partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit 9abeff538a2fc95f1af0c1029c065f21d722002b
parent 678006a4b5ecf39d4ce6fcb1d2b7cefe3764c9ea
Author: Felicitus <felicitus@felicitus.org>
Date:   Tue,  7 Jul 2015 21:54:50 +0200

Fixed drop table command

Diffstat:
M.travis.yml | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml @@ -1,7 +1,6 @@ language: php php: - - 5.4 - 5.5 - 5.6 - 7.0 @@ -26,7 +25,7 @@ matrix: before_script: - if [[ "$SYMFONY__TESTDB" == "pgsql" ]]; then psql -c "DROP DATABASE IF EXISTS partkeepr_test;" -U postgres; fi - if [[ "$SYMFONY__TESTDB" == "pgsql" ]]; then psql -c "create database partkeepr_test;" -U postgres; fi - - if [[ "$SYMFONY__TESTDB" == "mysql" ]]; then mysql -e "DROP IF EXISTS partkeepr_test;" -uroot; fi + - if [[ "$SYMFONY__TESTDB" == "mysql" ]]; then mysql -e "DROP TABLE IF EXISTS partkeepr_test;" -uroot; fi - if [[ "$SYMFONY__TESTDB" == "mysql" ]]; then mysql -e "create database IF NOT EXISTS partkeepr_test;" -uroot; echo "OK"; fi - composer self-update - composer install --prefer-source --no-interaction