From: lxoliva Date: Fri, 23 Mar 2012 00:17:27 +0000 (+0000) Subject: Fix quoting of trap commands in deblob-main. Fixes interrupt before X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=3c7b1952ca8b91e0a9c25170de7c7a0c494ff138;p=releases.git Fix quoting of trap commands in deblob-main. Fixes interrupt before signing. git-svn-id: http://www.fsfla.org/svn/fsfla/software/linux-libre/scripts@8473 559672b5-ba27-0410-b829-e8f1faed8b1b --- diff --git a/deblob-main b/deblob-main index 656e2a4f36a..6ec8e69bf38 100755 --- a/deblob-main +++ b/deblob-main @@ -199,7 +199,7 @@ else fi fi -trap "status=$?; echo cleaning up...; rm -rf $cleanup; (exit $status); exit" 0 1 2 15 +trap 'status=$?; echo cleaning up...; rm -rf $cleanup; (exit $status); exit' 0 1 2 15 set -e @@ -309,7 +309,7 @@ done rm -f linux-libre-$kver-$gnu.tar cleanup= -trap "status=$?; (exit $status); exit" 0 1 2 15 +trap 'status=$?; (exit $status); exit' 0 1 2 15 echo All set, please review linux-libre-$kver-$gnu.patch