From: Ulrich Müller Date: Tue, 22 Oct 2019 13:27:13 +0000 (+0200) Subject: bzr.eclass: Add die statements. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=320fcf034f5e860454e0d2a28ed405c5b843c60c;p=gentoo.git bzr.eclass: Add die statements. ... to make the QA lead happy. Signed-off-by: Ulrich Müller --- diff --git a/eclass/bzr.eclass b/eclass/bzr.eclass index cd19f22e11a9..fc1de9dc9ccc 100644 --- a/eclass/bzr.eclass +++ b/eclass/bzr.eclass @@ -197,7 +197,7 @@ bzr_update() { || die "${EBZR}: can't chdir to ${branch_dir}" ${EBZR_UPDATE_CMD} ${EBZR_OPTIONS} "${repo_uri}" \ || die "${EBZR}: can't pull from ${repo_uri}" - popd > /dev/null + popd > /dev/null || die "${EBZR}: popd failed" fi } @@ -278,7 +278,7 @@ bzr_fetch() { einfo \ "revision ${EBZR_REVISION:-${EBZR_REVNO}} is now in ${EBZR_UNPACK_DIR}" - popd > /dev/null + popd > /dev/null || die "${EBZR}: popd failed" } # @FUNCTION: bzr_src_unpack