Skip to content

Commit

Permalink
Moar compression
Browse files Browse the repository at this point in the history
The releases are failing to upload due to the size of llvm.
  • Loading branch information
ob committed Aug 22, 2019
1 parent 9abc383 commit 79b1c59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ do
TB=${package}-${OS}-${CPU}.tar.gz
tar -c $V -f - \
-C $BUILD --exclude '*.o' ${package}-${OS}-${CPU} \
| pigz > $RELEASE/$TB
| pigz -9 > $RELEASE/$TB
TARBALLS+=( $TB )
done

Expand All @@ -55,7 +55,7 @@ do
done

TB=tools-${OS}-${CPU}.tar.gz
tar $V -c -f - tools | pigz > $RELEASE/$TB
tar $V -c -f - tools | pigz -9 > $RELEASE/$TB
TARBALLS+=( $TB )

# Compute checksums
Expand Down

0 comments on commit 79b1c59

Please sign in to comment.