From 387570cc06ab3aca5824f1856b50a5e3ae5c2dc7 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Mon, 27 Nov 2006 04:25:34 +0000 Subject: trap chmod errors in tar unpack on bsd - modes like 02755 fail SVN-Revision: 5656 --- include/shell.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'include/shell.sh') diff --git a/include/shell.sh b/include/shell.sh index 6ee0cf6030..1e60692b97 100644 --- a/include/shell.sh +++ b/include/shell.sh @@ -13,3 +13,18 @@ isset() { eval "var=\"\${$1}\"" [ -n "$var" ] } + +trapret() {( + local retvals="$1"; shift + local cmd="$1"; shift + for retval in $(echo $retvals); do + local trap_$retval=1 + done + "$cmd" "$@" || { + local retval="$?" + eval "trapped=\${trap_$retval}" + [ -n "$trapped" ] || { + return $retval + } + } +)} -- cgit v1.2.3