We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8823a86 commit b69a386Copy full SHA for b69a386
build/lib/release.sh
@@ -472,7 +472,7 @@ function kube::release::package_kube_manifests_tarball() {
472
# Merge GCE-specific addons with general purpose addons.
473
local gce_objects
474
gce_objects=$(cd "${KUBE_ROOT}/cluster/gce/addons" && find . \( -name \*.yaml -or -name \*.yaml.in -or -name \*.json \) \( -not -name \*demo\* \))
475
- if [ -n "${gce_objects}" ]; then
+ if [[ -n ${gce_objects} ]]; then
476
tar c -C "${KUBE_ROOT}/cluster/gce/addons" "${gce_objects}" | tar x -C "${dst_dir}"
477
fi
478
0 commit comments