From: Zac Medico Date: Fri, 12 Dec 2008 21:40:50 +0000 (-0000) Subject: Fix exit code to return non-zero when an error occurs. Thanks to Christoph X-Git-Tag: v2.1.6.1~12 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=77fd37781045c9a95190ac9ea40a6fd2bbed51b1;p=portage.git Fix exit code to return non-zero when an error occurs. Thanks to Christoph Mende for reporting. (trunk r12202) svn path=/main/branches/2.1.6/; revision=12235 --- diff --git a/bin/dosed b/bin/dosed index 5ae09b7ed..97fca715f 100755 --- a/bin/dosed +++ b/bin/dosed @@ -3,6 +3,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ +ret=0 mysed="s:${D}::g" for x in "$@" ; do @@ -11,10 +12,13 @@ for x in "$@" ; do if [ -f "${y}" ] ; then sed -i -e "${mysed}" "${y}" else - echo "${y} is not a regular file!" - exit 1 + echo "${y} is not a regular file!" >&2 + false fi + ((ret+=$?)) else mysed="${x}" fi done + +exit $ret