From 3c7b1952ca8b91e0a9c25170de7c7a0c494ff138 Mon Sep 17 00:00:00 2001 From: lxoliva Date: Fri, 23 Mar 2012 00:17:27 +0000 Subject: [PATCH] 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 --- deblob-main | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.31.1