6 lines
119 B
Text
6 lines
119 B
Text
|
#!/bin/bash
|
||
|
if [ "$(which kubectl)" != "" ]; then
|
||
|
# shellcheck disable=SC1090
|
||
|
source <(kubectl completion bash)
|
||
|
fi
|