Improve bash formatting.

This commit is contained in:
Katharine Berry
2018-08-30 16:18:15 -07:00
parent 6afc130340
commit 8fe6467013
2 changed files with 18 additions and 18 deletions

View File

@@ -25,7 +25,7 @@ kube::util::array_contains() {
local element
shift
for element; do
if [[ "$element" == "$search" ]]; then
if [[ "${element}" == "${search}" ]]; then
return 0
fi
done