Created
September 26, 2019 10:41
-
-
Save tanelmae/19b039c2fa7c229307b4f48b3fe85666 to your computer and use it in GitHub Desktop.
denv bash completion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if [ -d /usr/local/etc/bash_completion.d/docker-compose.bash-completion ]; then | |
| . /usr/local/etc/bash_completion.d/docker-compose.bash-completion | |
| fi | |
| if [ -x "$(command -v _docker_compose)" ]; then | |
| echo "docker-compose bash completion not found" | |
| else | |
| complete -F _docker_compose denv | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment