Skip to content

Commit adf99e3

Browse files
bootstrap: Hide todolist when empty
1 parent 2b10844 commit adf99e3

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

install/utils/todolist.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@
55
TODOLIST_FILE="${BOOSTRAP_DIR}/TODO-bootstrap-machine.txt"
66

77
todolist_show_read_todolist() {
8-
message_warning_show "Some things MUST be setup up at manually. Read $TODOLIST_FILE for details or alternatively look hereafter"
98
if test -f "$TODOLIST_FILE"; then
9+
message_warning_show "Some things MUST be setup up at manually. Read $TODOLIST_FILE for details or alternatively look hereafter"
1010
cat "$TODOLIST_FILE"
11+
else
12+
message_warning_show "No more manual setup required."
1113
fi
1214
}
1315

0 commit comments

Comments
 (0)