mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
11 lines
262 B
Bash
11 lines
262 B
Bash
#!/usr/bin/env bash
|
|
. bash_tap_tw.sh
|
|
|
|
task add emptyval
|
|
task 1 done
|
|
task 1 mod end: status:pending
|
|
task_end=`task 1 info | grep ^End | sed -e 's/^End //' || true`
|
|
echo "task_end: $task_end"
|
|
|
|
# `task mod end:` should have deleted the end.
|
|
[[ "$task_end" == "" ]]
|