X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=deblob-main;h=71840776c75f2fedd484c7550328ad4a69bba41d;hb=aa585722014dff43fbaa8aef82f85e673ef6a0d3;hp=21c62ec1027abec4c595c19ecc7d98ff9eed2aba;hpb=b27527773c1fdb5948e97c48e3c6f87b225691c1;p=releases.git diff --git a/deblob-main b/deblob-main index 21c62ec1027a..71840776c75f 100755 --- a/deblob-main +++ b/deblob-main @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2008 Alexandre Oliva +# Copyright (C) 2008, 2009 Alexandre Oliva # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -113,6 +113,11 @@ if test -f linux-$kver-$libre.patch; then exit 1 fi +if test -f linux-$kver-$libre.log; then + echo linux-$kver-$libre.log already exists >&2 + exit 1 +fi + if test -f linux-$kver-$libre.xdelta; then echo linux-$kver-$libre.xdelta already exists >&2 exit 1 @@ -173,10 +178,15 @@ echo Copying linux-$kver to linux-$kver-$libre cp linux-$kver.tar linux-$kver-$libre.tar cp -lR linux-$kver/. linux-$kver-$libre -echo Deblobbing within linux-$kver-$libre -if (cd linux-$kver-$libre && /bin/sh ../$deblob $force); then - : -else +rm -f linux-$kver-$libre.log linux-$kver-$libre.log.tmp +echo Deblobbing within linux-$kver-$libre, saving output to linux-$kver-$libre.log +# We can't just pipe deblob into tee, for then we fail to detect +# error conditions. Use file renaming to tell whether we succeeded. +if (cd linux-$kver-$libre && /bin/sh ../$deblob $force) 2>&1; then + mv linux-$kver-$libre.log.tmp linux-$kver-$libre.log +fi | tee linux-$kver-$libre.log.tmp +if test ! -f linux-$kver-$libre.log; then + mv linux-$kver-$libre.log.tmp linux-$kver-$libre.log echo $deblob failed, aborting >&2 exit 1 fi