severity: warning
do_foo() {
}
addtask do_foo
A task without code is considered illegal syntax.
Fill the task with code instructions
do_foo() {
call some code here
}
addtask do_foo
or add
do_foo() {
:
}
addtask do_foo
to indicate any empty task