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