mirror of
https://github.com/Karaka-Management/Build.git
synced 2026-01-24 09:18:40 +00:00
17 lines
265 B
Bash
17 lines
265 B
Bash
#!/bin/bash
|
|
|
|
# Include config
|
|
BUILD_PATH="$(dirname "$(readlink -f "$0")")"
|
|
. "$BUILD_PATH/config.sh"
|
|
|
|
if [ $# -eq 0 ]; then
|
|
echo "No parameters provided."
|
|
exit 1
|
|
fi
|
|
|
|
INSPECTION_PATH="$1"
|
|
OUTPUT_PATH="$2"
|
|
|
|
# Run inspection
|
|
. ${BUILD_PATH}/Inspection/inspect.sh
|