
* Adds the code-inspector script * Sets the code-inspector to run together with the others GitHub Analyzers * Removes code inspection from build-travis and refactors code-inspector so it can be reused
17 lines
530 B
Bash
Executable file
17 lines
530 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
###################################################################################################
|
|
|
|
source "$(dirname "$BASH_SOURCE")/impl/common.sh"
|
|
source "$(dirname "$BASH_SOURCE")/impl/code-inspector.sh"
|
|
|
|
###################################################################################################
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
|
|
code_inspect "${ROOTPATH:-.}"
|
|
|
|
echo "code-inspector check passed"
|
|
|
|
###################################################################################################
|