1
0
Fork 0
mirror of https://github.com/overleaf/toolkit.git synced 2025-04-19 15:28:06 +02:00

Print a footer after doctor output

This commit is contained in:
Shane Kilkelly 2020-06-02 16:12:49 +01:00
parent 54a68376ab
commit be260efb23

View file

@ -14,6 +14,9 @@ function indent_to_level() {
function print_doctor_header() {
echo "== Overleaf Doctor =="
}
function print_doctor_footer() {
echo "== End =="
}
function print_heading() {
_name="$1"
@ -110,6 +113,7 @@ function __main__() {
check_host_information
check_dependencies
check_docker_daemon
print_doctor_footer
}
__main__ "$@"