fix inspection

This commit is contained in:
Dennis Eichhorn 2023-10-01 02:02:09 +00:00
parent a8cfa90b4d
commit 530c61f2cb
13 changed files with 13 additions and 13 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
. config.sh
. "$BUILD_PATH/config.sh"
echo "#################################################"
echo "Start static text inspection"

View File

@ -1,6 +1,6 @@
#!/bin/bash
. config.sh
. "$BUILD_PATH/config.sh"
echo "#################################################"
echo "Start html syntax inspection"

View File

@ -1,6 +1,6 @@
#!/bin/bash
. config.sh
. "$BUILD_PATH/config.sh"
echo "#################################################"
echo "Start html tags inspection"

View File

@ -1,6 +1,6 @@
#!/bin/bash
. config.sh
. "$BUILD_PATH/config.sh"
echo "#################################################"
echo "Start js security inspection"

View File

@ -1,6 +1,6 @@
#!/bin/bash
. config.sh
. "$BUILD_PATH/config.sh"
echo "#################################################"
echo "Start js style inspection"

View File

@ -1,6 +1,6 @@
#!/bin/bash
. config.sh
. "$BUILD_PATH/config.sh"
echo "#################################################"
echo "Start json linting inspection"

View File

@ -1,6 +1,6 @@
#!/bin/bash
. config.sh
. "$BUILD_PATH/config.sh"
echo "#################################################"
echo "Start php linting inspection"

View File

@ -1,6 +1,6 @@
#!/bin/bash
. config.sh
. "$BUILD_PATH/config.sh"
echo "#################################################"
echo "Start php security inspection"

View File

@ -1,6 +1,6 @@
#!/bin/bash
. config.sh
. "$BUILD_PATH/config.sh"
echo "#################################################"
echo "Start php stats inspection"

View File

@ -1,6 +1,6 @@
#!/bin/bash
. config.sh
. "$BUILD_PATH/config.sh"
echo "#################################################"
echo "Start php style inspection"

View File

@ -1,6 +1,6 @@
#!/bin/bash
. config.sh
. "$BUILD_PATH/config.sh"
echo "#################################################"
echo "Start php unit tests inspection"

View File

@ -1,6 +1,6 @@
#!/bin/bash
. config.sh
. "$BUILD_PATH/config.sh"
# Mysql required with query logging
# sudo apt-get install percona-toolkit

View File

@ -1,7 +1,7 @@
#!/bin/bash
# Include config
. config.sh
. "$BUILD_PATH/config.sh"
# Setup database
echo "#################################################"