summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-12-25 16:08:12 +0000
committerKarl Berry <karl@freefriends.org>2006-12-25 16:08:12 +0000
commitc69264157bb3668829745abc43fab8233fd7a1bb (patch)
tree1eb3ffcaa12a21e82a78f9564cfc165c376ab7dc /Build
parent6740e331290acc57febf3e3bb3430a915d77a951 (diff)
(MAKELIVE): bzip2 the live image.
git-svn-id: svn://tug.org/texlive/trunk@2903 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rwxr-xr-xBuild/tools/MakeImages.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/Build/tools/MakeImages.sh b/Build/tools/MakeImages.sh
index d9910514b44..6fbb63cc7bb 100755
--- a/Build/tools/MakeImages.sh
+++ b/Build/tools/MakeImages.sh
@@ -103,6 +103,12 @@ echo "--- `date` Writing complete live image to $live_iso."
mkisofs $common_mkisofs_options -root texlive -x 00INST.TL \
-o $live_iso .
md5sum $live_iso >$live_iso.md5
+
+ # compress the live image, helps people downloading test images.
+ # (the inst image doesn't compress enough to be worthwhile.)
+ bzip2 -v <$live_iso >$live_iso.bz2
+ md5sum $live_iso.bz2 >$live_iso.bz2.md5
+
rm -f install-tl.sh install-pkg.sh
)