forked from mirror/pixelfed
more clear separation between log entry points
This commit is contained in:
parent
eee17fe9f2
commit
82ab545f1a
|
@ -58,9 +58,9 @@ find "${ENTRYPOINT_D_ROOT}" -follow -type f -print | sort -V | while read -r fil
|
||||||
log-error-and-exit "File [${file}] is not executable (please 'chmod +x' it)"
|
log-error-and-exit "File [${file}] is not executable (please 'chmod +x' it)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
log-info ""
|
log-info "========================================"
|
||||||
log-info "${notice_message_color}Sourcing [${file}]${color_clear}"
|
log-info "Sourcing [${file}]"
|
||||||
log-info ""
|
log-info "========================================"
|
||||||
|
|
||||||
# shellcheck disable=SC1090
|
# shellcheck disable=SC1090
|
||||||
source "${file}"
|
source "${file}"
|
||||||
|
@ -76,9 +76,9 @@ find "${ENTRYPOINT_D_ROOT}" -follow -type f -print | sort -V | while read -r fil
|
||||||
log-error-and-exit "File [${file}] is not executable (please 'chmod +x' it)"
|
log-error-and-exit "File [${file}] is not executable (please 'chmod +x' it)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
log-info ""
|
log-info "========================================"
|
||||||
log-info "${notice_message_color}Executing [${file}]${color_clear}"
|
log-info "Executing [${file}]"
|
||||||
log-info ""
|
log-info "========================================"
|
||||||
|
|
||||||
"${file}"
|
"${file}"
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in New Issue