File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -439,7 +439,7 @@ function kube::release::package_kube_manifests_tarball() {
439
439
cp " ${KUBE_ROOT} /cluster/gce/gci/health-monitor.sh" " ${dst_dir} /health-monitor.sh"
440
440
# Merge GCE-specific addons with general purpose addons.
441
441
for d in cluster/addons cluster/gce/addons; do
442
- find " ${KUBE_ROOT} /${d} " \( \( -name \* .yaml -o -name \* .yaml.in -o -name \* .json \) -a ! \( -name \* demo\* \) \) -print0 | tar c --transform " s|${KUBE_ROOT#/* } /${d} ||" --null -T - | " ${TAR} " x -C " ${dst_dir} "
442
+ find " ${KUBE_ROOT} /${d} " \( \( -name \* .yaml -o -name \* .yaml.in -o -name \* .json \) -a ! \( -name \* demo\* \) \) -print0 | " ${TAR} " c --transform " s|${KUBE_ROOT#/* } /${d} ||" --null -T - | " ${TAR} " x -C " ${dst_dir} "
443
443
done
444
444
445
445
kube::release::clean_cruft
@@ -505,7 +505,7 @@ function kube::release::package_test_tarballs() {
505
505
# the portable test tarball.
506
506
mkdir -p " ${release_stage} /test/images"
507
507
cp -fR " ${KUBE_ROOT} /test/images" " ${release_stage} /test/"
508
- tar c " ${KUBE_TEST_PORTABLE[@]} " | tar x -C " ${release_stage} "
508
+ " ${TAR} " c " ${KUBE_TEST_PORTABLE[@]} " | " ${TAR} " x -C " ${release_stage} "
509
509
510
510
kube::release::clean_cruft
511
511
You can’t perform that action at this time.
0 commit comments