Files
dotfiles/dot_bash_it/completion/available/travis.completion.bash
2022-05-05 22:20:02 +02:00

11 lines
241 B
Bash

# shellcheck shell=bash
if _command_exists travis
then
if [[ -s "${__TRAVIS_COMPLETION_SCRIPT:=${TRAVIS_CONFIG_PATH:-${HOME}/.travis}/travis.sh}" ]]
then
source "${__TRAVIS_COMPLETION_SCRIPT}"
fi
unset __TRAVIS_COMPLETION_SCRIPT
fi