mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-22 14:23:35 -07:00
build_dist.sh: use git's options for gzip tarball
see `BACKEND EXTRA OPTIONS` of `man git-archive` for more details. Tested with git 2.48.1. Seems to be a bit faster.
This commit is contained in:
parent
882da47609
commit
3dc5a86a0d
1 changed files with 1 additions and 1 deletions
|
@ -15,5 +15,5 @@ else
|
|||
fi
|
||||
|
||||
# pack archives
|
||||
git archive --format=tar --prefix="qbittorrent-$projectVersion/" HEAD | gzip -9 > "qbittorrent-$projectVersion.tar.gz"
|
||||
git archive --prefix="qbittorrent-$projectVersion/" HEAD --output="qbittorrent-$projectVersion.tar.gz" -9
|
||||
git archive --format=tar --prefix="qbittorrent-$projectVersion/" HEAD | xz -9 > "qbittorrent-$projectVersion.tar.xz"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue