Skip to content

Commit

Permalink
build(release): add external gzip command to match github git version…
Browse files Browse the repository at this point in the history
… for now
  • Loading branch information
jtheoof committed Nov 19, 2022
1 parent 6c410c0 commit 3426531
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion script/sign-post-release
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ get_release_version() {
build_archives_from_source() {
echo "building source archives..."
cd $git_root
git archive -o "$release_folder/local-$app_name-$version.tar.gz" --format tar.gz --prefix "$app_name-$version/" "v$version"
# Temporary -c command because github is still using git < v2.38.0
git -c tar.tar.gz.command="gzip -cn" archive -o "$release_folder/local-$app_name-$version.tar.gz" --format tar.gz --prefix "$app_name-$version/" "v$version" -6
}


Expand Down

0 comments on commit 3426531

Please sign in to comment.