File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -126,10 +126,11 @@ function kube::release::package_src_tarball() {
126
126
# a full SDK
127
127
function kube::release::package_client_tarballs() {
128
128
# Find all of the built client binaries
129
- for platform in " ${LOCAL_OUTPUT_BINPATH} " /* /* ; do
129
+ for platform_long in " ${LOCAL_OUTPUT_BINPATH} " /* /* ; do
130
+ local platform
130
131
local platform_tag
131
- platform_tag =${platform ## ${LOCAL_OUTPUT_BINPATH} / } # Strip LOCAL_OUTPUT_BINPATH
132
- platform_tag=${platform_tag / \/ / -} # Replace a "/" for a "-"
132
+ platform =${platform_long ## ${LOCAL_OUTPUT_BINPATH} / } # Strip LOCAL_OUTPUT_BINPATH
133
+ platform_tag=${platform / \/ / -} # Replace a "/" for a "-"
133
134
kube::log::status " Starting tarball: client $platform_tag "
134
135
135
136
(
You can’t perform that action at this time.
0 commit comments