diff --git a/lib/functions/buildFileList.sh b/lib/functions/buildFileList.sh index 579197c4..867183be 100755 --- a/lib/functions/buildFileList.sh +++ b/lib/functions/buildFileList.sh @@ -7,6 +7,14 @@ ################################################################################ ########################## FUNCTION CALLS BELOW ################################ ################################################################################ + +################################################################################ +#### Function BuildFileList #################################################### +function IssueHintForFullGitHistory() { + info "Check that you have the full git history, the checkout is not shallow, etc" + info "See https://github.com/github/super-linter#example-connecting-github-action-workflow" +} + ################################################################################ #### Function GenerateFileDiff ################################################# function GenerateFileDiff() { @@ -33,8 +41,7 @@ function GenerateFileDiff() { if [ ${ERROR_CODE} -ne 0 ]; then # Error info "Failed to get Diff with:[$CMD]" - info "Check that you have the full git history, the checkout is not shallow, etc" - info "See https://github.com/github/super-linter#example-connecting-github-action-workflow" + IssueHintForFullGitHistory fatal "[${CMD_OUTPUT}]" fi @@ -224,6 +231,7 @@ function BuildFileList() { if [ ${ERROR_CODE} -ne 0 ]; then # Error error "Failed to switch back to branch!" + IssueHintForFullGitHistory fatal "[${SWITCH2_CMD}]" fi fi