Skip to content

Commit e5530f3

Browse files
authored
don't use var expansion for plugin install (#76)
1 parent d282ea4 commit e5530f3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

do

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ install-plugin() {
115115
name="${1}"
116116
repo="${2}"
117117

118-
if ! helm plugin list | grep ${name} >/dev/null; then
119-
echo "Installing helm ${name}"
120-
helm plugin install "${repo}"
118+
if ! helm plugin list | grep "$name" >/dev/null; then
119+
echo "Installing helm $name"
120+
helm plugin install "$repo"
121121
fi
122122
}
123123

0 commit comments

Comments
 (0)