mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
13 lines
277 B
Bash
Executable file
13 lines
277 B
Bash
Executable file
#!/usr/bin/env bash
|
|
. bash_tap_tw.sh
|
|
|
|
echo "uda.foo.label=foo" >> taskrc
|
|
echo "uda.foo.type=string" >> taskrc
|
|
|
|
# This sets foo to "PT13H" despite it being a string UDA
|
|
task add bar foo:"3h+10h"
|
|
|
|
# Show the problem in TAP output
|
|
task _get 1.foo
|
|
|
|
task _get 1.foo | grep '3h+10h'
|