10 lines
111 B
Bash
10 lines
111 B
Bash
#!/bin/bash
|
|
|
|
if (which helm &> /dev/null)
|
|
then
|
|
|
|
# activate completion
|
|
source <( helm completion bash )
|
|
|
|
fi
|