#!/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 "$HOME/.local/src/shared-common/common/Taskfile.yml" $@
  fi
else
  echo 'task is not installed or PATH_TASK is not defined.' && exit 1
fi