hardcoded template file

Might need to figure out how to change this at a later date
This commit is contained in:
sirReeall 2020-08-03 16:28:07 +01:00 committed by GitHub
parent c0626d00fa
commit f9e2e5a74a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1373,7 +1373,7 @@ if [ "$VALIDATE_JAVA" == "true" ]; then
# Lint the JAVA files #
#######################
# LintCodebase "FILE_TYPE" "LINTER_NAME" "LINTER_CMD" "FILE_TYPES_REGEX" "FILE_ARRAY"
LintCodebase "JAVA" "checkstyle" "java -jar /usr/bin/checksytle.jar" ".*\.\(java\)\$" "${FILE_ARRAY_JAVA[@]}"
LintCodebase "JAVA" "checkstyle" "java -jar /usr/bin/checksytle.jar -c sun_checks.xml" ".*\.\(java\)\$" "${FILE_ARRAY_JAVA[@]}"
fi
##################