From 383d6a401a4a015e9cefc84a50063524baf4266b Mon Sep 17 00:00:00 2001 From: Seth Michael Larson Date: Mon, 11 Jan 2021 15:16:52 -0600 Subject: [PATCH] Use gzip to compress the release tarball --- .ci/make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/make.sh b/.ci/make.sh index 02c95ccd83..92316e077f 100755 --- a/.ci/make.sh +++ b/.ci/make.sh @@ -11,7 +11,7 @@ if [[ "$1" == "assemble" ]]; then docker run --rm -v $BASE_DIR/.ci/output:/code/elasticsearch-py/dist \ elastic/elasticsearch-py \ python /code/elasticsearch-py/utils/build-dists.py $2 - cd ./.ci/output && tar -cvf elasticsearch-py-$2.tar.gz * && cd - + cd ./.ci/output && tar -czvf elasticsearch-py-$2.tar.gz * && cd - exit 0 fi