Commit c0c888fd authored by Ismo Puustinen's avatar Ismo Puustinen

hack/lib/golang.sh: do not split on array items.

parent 9209953c
...@@ -675,7 +675,7 @@ kube::golang::build_binaries() { ...@@ -675,7 +675,7 @@ kube::golang::build_binaries() {
kube::golang::build_kube_toolchain kube::golang::build_kube_toolchain
kube::log::status "Generating bindata:" "${KUBE_BINDATAS[@]}" kube::log::status "Generating bindata:" "${KUBE_BINDATAS[@]}"
for bindata in ${KUBE_BINDATAS[@]}; do for bindata in "${KUBE_BINDATAS[@]}"; do
# Only try to generate bindata if the file exists, since in some cases # Only try to generate bindata if the file exists, since in some cases
# one-off builds of individual directories may exclude some files. # one-off builds of individual directories may exclude some files.
if [[ -f "${KUBE_ROOT}/${bindata}" ]]; then if [[ -f "${KUBE_ROOT}/${bindata}" ]]; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment