mirror of
https://github.com/Karaka-Management/Build.git
synced 2026-01-11 11:48:40 +00:00
Fix paths
This commit is contained in:
parent
5709830c02
commit
75e3c248ef
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
. $(dirname "$0")/../../config.sh
|
. config.sh
|
||||||
|
|
||||||
echo "Start html attributes inspection\n"
|
echo "Start html attributes inspection\n"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
. $(dirname "$0")/../../config.sh
|
. config.sh
|
||||||
|
|
||||||
echo "Start html tags inspection\n"
|
echo "Start html tags inspection\n"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
. $(dirname "$0")/../../config.sh
|
. config.sh
|
||||||
|
|
||||||
echo "Start js security inspection\n"
|
echo "Start js security inspection\n"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
. $(dirname "$0")/../../config.sh
|
. config.sh
|
||||||
|
|
||||||
echo "Start json linting inspection\n"
|
echo "Start json linting inspection\n"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
. $(dirname "$0")/../../config.sh
|
. config.sh
|
||||||
|
|
||||||
echo "Start php linting inspection\n"
|
echo "Start php linting inspection\n"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
. $(dirname "$0")/../../config.sh
|
. config.sh
|
||||||
|
|
||||||
echo "Start php security inspection\n"
|
echo "Start php security inspection\n"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
. $(dirname "$0")/../../config.sh
|
. config.sh
|
||||||
|
|
||||||
echo "Start php stats inspection\n"
|
echo "Start php stats inspection\n"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
. $(dirname "$0")/../../config.sh
|
. config.sh
|
||||||
|
|
||||||
echo "Start php style inspection\n"
|
echo "Start php style inspection\n"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Include config
|
# Include config
|
||||||
. $(dirname "$0")/../config.sh
|
. config.sh
|
||||||
|
|
||||||
# Setting up database for demo and testing
|
# Setting up database for demo and testing
|
||||||
mysql -e 'drop database if exists oms;' -u ${DB_USER} -p${DB_PASSWORD}
|
mysql -e 'drop database if exists oms;' -u ${DB_USER} -p${DB_PASSWORD}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
. $(dirname "$0")/../config.sh
|
. config.sh
|
||||||
|
|
||||||
. ${BUILD_PATH}/Js/buildBase.sh
|
. ${BUILD_PATH}/Js/buildBase.sh
|
||||||
. ${BUILD_PATH}/Js/buildLib.sh
|
. ${BUILD_PATH}/Js/buildLib.sh
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
# Clean setup
|
# Clean setup
|
||||||
. setup.sh
|
. setup.sh
|
||||||
|
|
||||||
cd ${ROOT_PATH}
|
cd ${BUILD_PATH}
|
||||||
|
|
||||||
# Run inspection
|
# Run inspection
|
||||||
. ${BUILD_PATH}/Inspection/inspect.sh
|
. ${BUILD_PATH}/Inspection/inspect.sh
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user