commit: dc54e9c02602a5e16ce472f4a3a6f1321fa2d810
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 19 14:45:59 2015 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Nov 19 14:54:17 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc54e9c0
git-r3.eclass: Remove redundant ||die in subshell
eclass/git-r3.eclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/eclass/git-r3.eclass b/eclass/git-r3.eclass
index 0ee70bc..c489234 100644
--- a/eclass/git-r3.eclass
+++ b/eclass/git-r3.eclass
@@ -314,7 +314,7 @@ _git-r3_set_gitdir() {
if [[ ! -d ${EGIT3_STORE_DIR} ]]; then
(
addwrite /
- mkdir -p "${EGIT3_STORE_DIR}" || die
+ mkdir -p "${EGIT3_STORE_DIR}"
) || die "Unable to create ${EGIT3_STORE_DIR}"
fi