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

Use * for printing lines

This commit is contained in:
Shane Kilkelly 2020-06-02 16:13:04 +01:00
parent be260efb23
commit 52f15e8aa5

View file

@ -19,16 +19,15 @@ function print_doctor_footer() {
}
function print_heading() {
_name="$1"
echo "- ${_name}"
echo "- $*"
}
function print_sub_point() {
echo "$(indent_to_level 1)- $@"
echo "$(indent_to_level 1)- $*"
}
function print_sub_sub_point() {
echo "$(indent_to_level 2)- $@"
echo "$(indent_to_level 2)- $*"
}
function check_for_binary() {