aboutsummaryrefslogtreecommitdiff
path: root/task
blob: 60b116ed3207c2caeec8efea11b60a910138ffe9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
#
# A very simple taskwarrior wrapper.
#

# Parameters
TASK="/usr/bin/task"

# Dispatch
if [ -e ".task" ]; then
  $TASK rc.data.location=.task "${@}"
else
  $TASK "${@}"
fi