Fix paths

This commit is contained in:
Dennis Eichhorn 2018-03-30 09:06:44 +02:00
parent 5709830c02
commit 75e3c248ef
11 changed files with 11 additions and 11 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
. $(dirname "$0")/../../config.sh
. config.sh
echo "Start html attributes inspection\n"

View File

@ -1,6 +1,6 @@
#!/bin/bash
. $(dirname "$0")/../../config.sh
. config.sh
echo "Start html tags inspection\n"

View File

@ -1,6 +1,6 @@
#!/bin/bash
. $(dirname "$0")/../../config.sh
. config.sh
echo "Start js security inspection\n"

View File

@ -1,6 +1,6 @@
#!/bin/bash
. $(dirname "$0")/../../config.sh
. config.sh
echo "Start json linting inspection\n"

View File

@ -1,6 +1,6 @@
#!/bin/bash
. $(dirname "$0")/../../config.sh
. config.sh
echo "Start php linting inspection\n"

View File

@ -1,6 +1,6 @@
#!/bin/bash
. $(dirname "$0")/../../config.sh
. config.sh
echo "Start php security inspection\n"

View File

@ -1,6 +1,6 @@
#!/bin/bash
. $(dirname "$0")/../../config.sh
. config.sh
echo "Start php stats inspection\n"

View File

@ -1,6 +1,6 @@
#!/bin/bash
. $(dirname "$0")/../../config.sh
. config.sh
echo "Start php style inspection\n"

View File

@ -1,7 +1,7 @@
#!/bin/bash
# Include config
. $(dirname "$0")/../config.sh
. config.sh
# Setting up database for demo and testing
mysql -e 'drop database if exists oms;' -u ${DB_USER} -p${DB_PASSWORD}

View File

@ -1,6 +1,6 @@
#!/bin/bash
. $(dirname "$0")/../config.sh
. config.sh
. ${BUILD_PATH}/Js/buildBase.sh
. ${BUILD_PATH}/Js/buildLib.sh

View File

@ -6,7 +6,7 @@
# Clean setup
. setup.sh
cd ${ROOT_PATH}
cd ${BUILD_PATH}
# Run inspection
. ${BUILD_PATH}/Inspection/inspect.sh