From 398a42634f34afa1979d88ae1d8b38194e911c2d Mon Sep 17 00:00:00 2001 From: David Seifert Date: Wed, 11 Dec 2019 13:32:00 +0100 Subject: */*: [QA] Remove redundant `|| die` guards MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Since all ebuilds in the tree are EAPI>=4, `|| die` on builtin commands is redundant and dead code. Closes: https://github.com/gentoo/gentoo/pull/13940 Reviewed-by: Ulrich Müller Reviewed-by: Michał Górny Reviewed-by: Andreas K. Hüttel Signed-off-by: David Seifert --- net-proxy/obfs4proxy/obfs4proxy-0.0.11.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'net-proxy/obfs4proxy') diff --git a/net-proxy/obfs4proxy/obfs4proxy-0.0.11.ebuild b/net-proxy/obfs4proxy/obfs4proxy-0.0.11.ebuild index e0d6e07a19be..c5626e850c86 100644 --- a/net-proxy/obfs4proxy/obfs4proxy-0.0.11.ebuild +++ b/net-proxy/obfs4proxy/obfs4proxy-0.0.11.ebuild @@ -43,8 +43,8 @@ src_compile() { src_install() { default - dobin obfs4proxy || die "install failed" + dobin obfs4proxy cd src/${EGO_SRC} - doman doc/obfs4proxy.1 || die "install failed" - dodoc README.md ChangeLog doc/obfs4-spec.txt || die "install failed" + doman doc/obfs4proxy.1 + dodoc README.md ChangeLog doc/obfs4-spec.txt } -- cgit v1.2.3-65-gdbad