mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-25 15:41:02 -05:00
Check if report output folder exists before listing
This commit is contained in:
parent
644e69131b
commit
f90c3a289b
1 changed files with 7 additions and 3 deletions
|
@ -1070,9 +1070,13 @@ Reports() {
|
||||||
#############################################
|
#############################################
|
||||||
# Print info on reports that were generated #
|
# Print info on reports that were generated #
|
||||||
#############################################
|
#############################################
|
||||||
|
if [ -d "${REPORT_OUTPUT_FOLDER}" ]; then
|
||||||
info "Contents of report folder:"
|
info "Contents of report folder:"
|
||||||
OUTPUT_CONTENTS_CMD=$(ls "${REPORT_OUTPUT_FOLDER}")
|
OUTPUT_CONTENTS_CMD=$(ls "${REPORT_OUTPUT_FOLDER}")
|
||||||
info "$OUTPUT_CONTENTS_CMD"
|
info "$OUTPUT_CONTENTS_CMD"
|
||||||
|
else
|
||||||
|
warn "Report output folder (${REPORT_OUTPUT_FOLDER}) does NOT exist."
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
################################
|
################################
|
||||||
|
|
Loading…
Reference in a new issue