7 lines
90 B
Bash
7 lines
90 B
Bash
#!/bin/bash
|
|
|
|
if (command -v helm &> /dev/null)
|
|
then
|
|
source <( helm completion bash )
|
|
fi
|