7 lines
95 B
Bash
7 lines
95 B
Bash
#!/bin/bash
|
|
|
|
if [ -d ~/.krew/bin ]
|
|
then
|
|
export PATH="${KREW_ROOT:-$HOME/.krew}/bin:$PATH"
|
|
fi
|