bash-it/completion/available/goenv.completion.bash

7 lines
251 B
Bash

#!/usr/bin/env bash
# Bash completion support for goenv
if _command_exists goenv && [[ -r "$(dirname $(readlink -f $(which goenv)))/../completions/goenv.bash" ]] ; then
source "$(dirname $(readlink -f $(which goenv)))/../completions/goenv.bash"
fi