-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
complete from bin/magento #12
Comments
Thank you for reporting. |
It's the bash that comes with kubuntu 16.10
My bashrc has a couple of other completions loaded too, so it could be something there too. Here's the part I added to the default. export GOPATH=$HOME/Workspace/gocode
export PATH=$PATH:$GOPATH/bin:$HOME/bin:$HOME/bin/go_appengine
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
export JAVA_HOME=$HOME/bin/jdk
export PATH=$PATH:$JAVA_HOME/bin
alias docker_clean_images='docker rmi $(docker images -a --filter=dangling=true -q)'
alias docker_clean_ps='docker rm $(docker ps --filter=status=exited --filter=status=created -q)'
alias 64d='base64decode'
source /usr/lib/google-cloud-sdk/completion.bash.inc
# https://kubernetes.io/docs/user-guide/kubectl/kubectl_completion/
source <(kubectl completion bash)
# sudo curl -o /etc/bash_completion.d/magento2-bash-completion https://raw.githubusercontent.com/yvoronoy/magento2-bash-completion/master/magento2-bash-completion-enterprise
source $HOME/bin/magento2-bash-completion-enterprise |
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We don't have the
magento
command installed globally on most of our servers, so we typically call the command withbin/magento
from the web root.Adding
bin/magento
to the list passed tocomplete
at the end of the file fixes the issue for us.The text was updated successfully, but these errors were encountered: