install.fairie/home/dot_local/bin/executable_task
2023-08-01 07:05:52 +00:00

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