This commit is contained in:
Tobias Kaminsky 2019-01-29 16:58:42 +00:00 committed by GitHub
commit d9882c916b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 4 deletions

View file

@ -116,9 +116,13 @@ else
exit 1
fi
if [ $lintValue -eq 2 ]; then
exit 0
else
if [ ! $lintValue -eq 2 ]; then
exit $lintValue
fi
if [ $findbugsValue -eq 2 ]; then
exit 0
else
exit $findbugsValue
fi
fi

View file

@ -1 +1 @@
534
535