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