Description
I often have that code
- cmd: echo "starting xyz"
slient: true
at the beginning of a task or also in between commands, just to have some output about what's going on.
I would love to have that task native, just like prompt but without the prompt or like desc on task level but it is printed.
Just like so:
install:
desc: Builds and install the app
cmds:
- print: "starting build..."
- cmd: go build *.go -o myapp
- print: "installing to destination"
- cmd: mv myapp /dest/myapp
Whether it is called print or echo doesn't really matter to me...
Description
I often have that code
at the beginning of a task or also in between commands, just to have some output about what's going on.
I would love to have that task native, just like prompt but without the prompt or like desc on task level but it is printed.
Just like so:
Whether it is called
printorechodoesn't really matter to me...