Skip to content

Commit b20e953

Browse files
ferhatelmask8s-ci-robot
authored andcommitted
Drop GZIP env in artifact building (#397)
* Drop GZIP env in artifacts * Correct gzip level * Use longer flags, drop best
1 parent b303e3a commit b20e953

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hack/make-release-artifacts.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ done < <(find "${bin_dir}" -print0)
4646
echo >&2 "Creating ${krew_tar_archive} archive."
4747
(
4848
cd "${bin_dir}"
49-
GZIP=-n tar czvf "${SCRIPTDIR}/../out/${krew_tar_archive}" ./*
49+
tar --use-compress-program "gzip --no-name" -cvf "${SCRIPTDIR}/../out/${krew_tar_archive}" ./*
5050
)
5151

5252
checksum_cmd="shasum -a 256"

0 commit comments

Comments
 (0)