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
b551d62504
commit
d82c1bd7d9
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
. ${BUILD_PATH}/config.sh
|
||||
. config.sh
|
||||
|
||||
echo "Start html attributes inspection\n"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
. ${BUILD_PATH}/config.sh
|
||||
. config.sh
|
||||
|
||||
echo "Start html tags inspection\n"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
. ${BUILD_PATH}/config.sh
|
||||
. config.sh
|
||||
|
||||
echo "Start js security inspection\n"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
. ${BUILD_PATH}/config.sh
|
||||
. config.sh
|
||||
|
||||
echo "Start json linting inspection\n"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
. ${BUILD_PATH}/config.sh
|
||||
. config.sh
|
||||
|
||||
echo "Start php linting inspection\n"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
. ${BUILD_PATH}/config.sh
|
||||
. config.sh
|
||||
|
||||
echo "Start php security inspection\n"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
. ${BUILD_PATH}/config.sh
|
||||
. config.sh
|
||||
|
||||
echo "Start php stats inspection\n"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
. ${BUILD_PATH}/config.sh
|
||||
. config.sh
|
||||
|
||||
echo "Start php style inspection\n"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Include config
|
||||
. ${BUILD_PATH}/config.sh
|
||||
. config.sh
|
||||
|
||||
# Setting up database for demo and testing
|
||||
mysql -e 'drop database if exists oms;' -u ${DB_USER} -p${DB_PASSWORD}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
. ${BUILD_PATH}/config.sh
|
||||
. config.sh
|
||||
|
||||
. ${BUILD_PATH}/Js/buildBase.sh
|
||||
. ${BUILD_PATH}/Js/buildLib.sh
|
||||
|
|
|
|||
5
setup.sh
5
setup.sh
|
|
@ -77,8 +77,5 @@ if [ ! -d "$TOOLS_PATH" ]; then
|
|||
chmod -R 777 ${TOOLS_PATH}
|
||||
cp ${ROOT_PATH}/composer.json ${TOOLS_PATH}/composer.json
|
||||
|
||||
php composer.phar install
|
||||
php ${TOOLS_PATH}/composer.phar install --working-dir=${ROOT_PATH}/
|
||||
fi
|
||||
|
||||
# Link vendor
|
||||
ln -s ${TOOLS_PATH}/vendor ${ROOT_PATH}/vendor
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user