11 lines
322 B
Bash
11 lines
322 B
Bash
#!/usr/bin/env bash
|
|
|
|
if command -v task > /dev/null && [ -n "$PATH_TASK" ]; then
|
|
if [ -f Taskfile.yml ]; then
|
|
$PATH_TASK $*
|
|
else
|
|
$PATH_TASK --taskfile "${XDG_DATA_HOME:-$HOME/.local/share}/shared-common/common/Taskfile.yml" $@
|
|
fi
|
|
else
|
|
echo 'task is not installed or PATH_TASK is not defined.' && exit 1
|
|
fi
|