Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. if [ -d /usr/local/etc/bash_completion.d/docker-compose.bash-completion ]; then
  2. . /usr/local/etc/bash_completion.d/docker-compose.bash-completion
  3. fi
  4.  
  5. if [ -x "$(command -v _docker_compose)" ]; then
  6. echo "docker-compose bash completion not found"
  7. else
  8. complete -F _docker_compose denv
  9. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement