mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
13 lines
280 B
Bash
Executable file
13 lines
280 B
Bash
Executable file
#!/usr/bin/env bash
|
|
. bash_tap_tw.sh
|
|
|
|
task add modtest modified:yesterday
|
|
old_modified=`task _get 1.modified`
|
|
echo $old_modified
|
|
|
|
task 1 start
|
|
new_modified=`task _get 1.modified`
|
|
echo $new_modified
|
|
|
|
# `task start` should have updated modified
|
|
[[ $old_modified != $new_modified ]]
|