Fix completion for aws and kubectl
This commit is contained in:
parent
281ad5bd84
commit
799201d887
@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
if ( which aws && which aws_completer &> /dev/null )
|
||||
if ( which aws && which aws_completer ) &> /dev/null
|
||||
then
|
||||
complete -C aws_completer aws
|
||||
fi
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
if ( which kubectl &> /dev/null )
|
||||
if ( which kubectl ) &> /dev/null
|
||||
then
|
||||
source <(kubectl completion bash)
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user