Skip to content

Commit

Permalink
git-r3.eclass: Remove redundant ||die in subshell
Browse files Browse the repository at this point in the history
  • Loading branch information
mgorny committed Nov 19, 2015
1 parent b719200 commit dc54e9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eclass/git-r3.eclass
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit dc54e9c

Please sign in to comment.