6 lines
106 B
Bash
6 lines
106 B
Bash
#!/bin/bash
|
|
|
|
if (command -v krew &>/dev/null); then
|
|
export PATH="${KREW_ROOT:-$HOME/.krew}/bin:$PATH"
|
|
fi
|