From f9e2e5a74a8dc3ebc5683e8c4045d1489964809e Mon Sep 17 00:00:00 2001 From: sirReeall <35725129+sirReeall@users.noreply.github.com> Date: Mon, 3 Aug 2020 16:28:07 +0100 Subject: [PATCH] hardcoded template file Might need to figure out how to change this at a later date --- lib/linter.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linter.sh b/lib/linter.sh index 8119313f..ec63966c 100755 --- a/lib/linter.sh +++ b/lib/linter.sh @@ -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 ##################