We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff227a3 commit db4961aCopy full SHA for db4961a
Taskfile.yml
@@ -67,7 +67,7 @@ tasks:
67
desc: Interactive picker for notes tasks
68
cmds:
69
- |
70
- TASK=$(task --list | grep "^\* notes:" | sed 's/^\* notes://' | sed 's/\s\+/ - /' | fzf --prompt="Select notes task: " --height=40% --reverse)
+ TASK=$(task --list | grep "^\* notes:" | sed 's/^\* notes://' | sed 's/\s\+/ - /' | fzf --prompt="Select notes task: " --height=40% --reverse) || true
71
if [ -n "$TASK" ]; then
72
TASK_NAME=$(echo "$TASK" | awk '{print $1}' | sed 's/:$//')
73
task notes:$TASK_NAME
0 commit comments