diff options
author | Dave Reisner <dreisner@archlinux.org> | 2014-06-01 23:54:20 -0400 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2014-09-22 08:25:42 -0400 |
commit | af6c0a0f6a7644f583f2d83ba7a61e82b77bdc37 (patch) | |
tree | bc3d3ab5b9183bb686165c59e2037a6e6d6fb82e /lib/common.sh | |
parent | 905198295dcb4fffcd16edff3fd7052a4cfc5788 (diff) | |
download | devtools32-af6c0a0f6a7644f583f2d83ba7a61e82b77bdc37.tar.xz |
common.sh: propagate error through trap_exit
Fixes a breakage introduced in 6db31cc16a80442 which leads to errors
being masked from makechrootpkg.
Diffstat (limited to 'lib/common.sh')
-rw-r--r-- | lib/common.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/common.sh b/lib/common.sh index b885080..104850b 100644 --- a/lib/common.sh +++ b/lib/common.sh @@ -79,8 +79,9 @@ trap_abort() { } trap_exit() { + local r=$? trap - EXIT INT QUIT TERM HUP - cleanup + cleanup $r } die() { |