diff options
author | Michał Górny <mgorny@gentoo.org> | 2013-10-14 20:30:00 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2013-10-14 20:30:00 +0000 |
commit | 1fd49502d6ea313392d707012fb2a8866e9f4937 (patch) | |
tree | 11b85ff95839a06a8f201d6b598531be77f08461 /eclass/git-r3.eclass | |
parent | Switch to git-r3. Add PYTHON_USEDEP on portage. (diff) | |
download | historical-1fd49502d6ea313392d707012fb2a8866e9f4937.tar.gz historical-1fd49502d6ea313392d707012fb2a8866e9f4937.tar.bz2 historical-1fd49502d6ea313392d707012fb2a8866e9f4937.zip |
Fix over-use of ||die.
Diffstat (limited to 'eclass/git-r3.eclass')
-rw-r--r-- | eclass/git-r3.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/git-r3.eclass b/eclass/git-r3.eclass index 32300387493d..743619fa2a32 100644 --- a/eclass/git-r3.eclass +++ b/eclass/git-r3.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v 1.17 2013/10/14 13:32:33 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v 1.18 2013/10/14 20:30:00 mgorny Exp $ # @ECLASS: git-r3.eclass # @MAINTAINER: @@ -254,7 +254,7 @@ _git-r3_set_submodules() { # skip modules that have 'update = none', bug #487262. local upd=$(echo "${data}" | git config -f /dev/fd/0 \ - submodule."${subname}".update || die) + submodule."${subname}".update) [[ ${upd} == none ]] && continue submodules+=( |