Fixing variables

This commit is contained in:
Dennis Eichhorn 2016-03-26 13:30:09 +01:00
parent b9ee6c859e
commit 4260a32e80
4 changed files with 2 additions and 6 deletions

View File

@ -2,7 +2,6 @@
# Include
. var.sh
. ${ROOT_PATH}/private.sh
# Executing unit tests
php ${ROOT_PATH}/phpunit.phar --configuration ${ROOT_PATH}/${TEST_PATH}/PHPUnit/phpunit_default.xml > ${ROOT_PATH}/${BUILD_PATH}/logs/phpunit.log

View File

@ -1,4 +0,0 @@
#!/bin/bash
DB_PASSWORD="123456"
DB_USER="root"

View File

@ -1,7 +1,6 @@
#!/bin/bash
. var.sh
. ${ROOT_PATH}/private.sh
# Previous cleanup
rm -r -f ${ROOT_PATH}

2
var.sh
View File

@ -8,6 +8,8 @@ RELEASE_PATH="Release"
TEST_PATH="Tests"
WEB_URL="http://orange-management.de"
MAIL_ADDR=""
DB_USER="root"
DB_PASSWORD="123456"
# Git variables
GITHUB_URL[0]="https://github.com/Orange-Management/Orange-Management.git"