Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorMartin Dengler <martin@martindengler.com>2009-08-11 12:23:35 (GMT)
committer Martin Dengler <martin@martindengler.com>2009-08-11 12:23:35 (GMT)
commit293d8e0300ee737c5007cbda472a17fef292913f (patch)
tree99356aaa9560de561fe54debd60164a15ea93d11 /build
parente371bf52fb0d7be63b7289f2c0b3839c4de7d701 (diff)
report size and change more clearly and in MB, not GB
Diffstat (limited to 'build')
-rwxr-xr-xbuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/build b/build
index a180940..6ae84de 100755
--- a/build
+++ b/build
@@ -14,7 +14,7 @@ echo building $buildname ; echo building $buildname >> ${buildname}.buildlog
for ext in tree removable.img img ; do
prevsize=$(< $prevbuild.$ext.size.txt)
nextsize=$(< $buildname.$ext.size.txt)
- python -c "oldk = $prevsize ; newk = $nextsize ; print '%0.2fG (%dK)' % (newk / 1024 / 1024.0, newk - oldk)" > $buildname.$ext.size-change.txt
+ python -c "oldk = $prevsize ; newk = $nextsize ; print '%0.2fM / %dK /' % (newk / 1024.0, newk - oldk)" > $buildname.$ext.size-change.txt
done
diff -U 1 $prevbuild.tree.packages.txt $buildname.tree.packages.txt | grep -v ^@@ > $buildname.tree.package-changes.txt